Bump version and update Changes 5999.000_016
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 12 Mar 2016 20:05:03 +0000 (20:05 +0000)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 12 Mar 2016 20:05:03 +0000 (20:05 +0000)
15 files changed:
Changes
README
gruntmaster-opener
lib/Gruntmaster/App.pm
lib/Gruntmaster/App/Command.pm
lib/Gruntmaster/App/Command/Add.pm
lib/Gruntmaster/App/Command/Edit.pm
lib/Gruntmaster/App/Command/Get.pm
lib/Gruntmaster/App/Command/List.pm
lib/Gruntmaster/App/Command/Rerun.pm
lib/Gruntmaster/App/Command/Rm.pm
lib/Gruntmaster/App/Command/Set.pm
lib/Gruntmaster/App/Command/Show.pm
lib/Gruntmaster/Data.pm
lib/Gruntmaster/Opener.pm

diff --git a/Changes b/Changes
index 11ba3f4afd07c4bf8336a6446dd614fbf242c1d7..fb6bc2a39fdc22856fb5b0598417e24f11da2b6a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Gruntmaster::Data.
 
+5999.000_016 2016-03-12T20:05+02:00
+ - Add gm edit command
+ - Make gm rerun also work with problems
+ - Purge standings in finish_job
+ - Purge problem/contest list after adding problem/contest
+
 5999.000_015 2015-10-10T14:36+03:00
  - Make t/tools.t not crash when postgres is not running
 
diff --git a/README b/README
index e0768a8edcdddd6c4612772265de4b2bc370dc46..1f4f0202e4cd9ba369b5b6eba497f7037d13bba2 100644 (file)
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Gruntmaster-Data version 5999.000_015
+Gruntmaster-Data version 5999.000_016
 =====================================
 
 This distribution contains:
@@ -36,7 +36,7 @@ This module requires these other modules and libraries:
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index f0914b9fd31f7e1bb4945ce2521700e07b96543d..dbdf7393d15957a47dcf6c82e2f0528dd639c707 100755 (executable)
@@ -38,7 +38,7 @@ Marius Gavrilescu E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 61805a4ba6d3d7f44a41e9924074073b43b08a92..4a93a163d6bc8849fc1006ed6b715ab3b6413c75 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use App::Cmd::Setup '-app';
 use Gruntmaster::Data;
@@ -55,7 +55,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 5408c6d393d56556ab64a1b06f97dcab0597703f..d0b760219229f775678b6545422eb58f7fbbdfe5 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use re '/s';
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use parent qw/App::Cmd::Command/;
 use Pod::Usage;
@@ -52,7 +52,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 38f7836edff76704cdfd6d6af625dd3a95856c69..e3a596beeb21c5c058f2b349de86a0ab8d20ffa4 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Add;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -152,7 +152,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 3257903d469515ec527914b58f3c5ff9ed8caa60..00a058273b2227d1a5c0b787ae4855f0ffac7d85 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Edit;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use File::Temp qw/tempfile/;
 use File::Slurp qw/read_file write_file/;
@@ -71,7 +71,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index c751b4c27dcf1afbfdaecd92f6d88392316d0fde..cba5b68d8695b74030d6304fa224ef6ac8f13479 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Get;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -62,7 +62,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 70b7f0fe9ef65a0a6c577ae663563518983215fc..7db0ea3f8d0687a324810881c1f55adb52c11bea 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::List;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -64,7 +64,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 4856b33b0ac661fa0937e2d9405a357d152a8374..b12dda089cb97b7db3b50e712ae6acdb1f1e682b 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Rerun;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -62,7 +62,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 0ddb03054ba2677677fb5a5c192a0707805010f3..247ca63c3520c0e3ff0b9bafad2e749501eca05e 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Rm;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -53,7 +53,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 2624ce4d1d40407a1f6c21d5639ed9054c5abea5..e1f70da8201e0bc27cb7b857e100b9e195c7cca4 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Set;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -71,7 +71,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index 55e05e13594d6b06697763b5483991b6e09647d2..af2e301011c43726668f92e9e7d1ad578a9b01e5 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Show;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
@@ -129,7 +129,7 @@ Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index dd6c73faa8d880a25527c3dac51239d338cea6fb..c6b6f6f2097207bac5057593c9226c6f25e4bbda 100644 (file)
@@ -3,7 +3,7 @@ use 5.014;
 use warnings;
 
 use parent qw/Exporter/;
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 our @EXPORT = qw/dbinit purge db user_list user_entry problem_list problem_entry contest_list contest_entry contest_has_problem job_list job_entry create_job standings update_status rerun_job rerun_problem take_job finish_job open_problem/;
 our @EXPORT_OK = @EXPORT;
 
@@ -475,7 +475,7 @@ Marius Gavrilescu E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
index d47db039eff6010363318e89cef3201181c5ad64..9b0bb4400ab22fe33a194f5e6e45f63d3ab11eeb 100644 (file)
@@ -7,7 +7,7 @@ use re '/s';
 
 our @EXPORT = qw/handle_line/;
 our @EXPORT_OK = @EXPORT;
-our $VERSION = '5999.000_015';
+our $VERSION = '5999.000_016';
 
 use Date::Parse qw/str2time/;
 use Gruntmaster::Data;
@@ -100,7 +100,7 @@ Marius Gavrilescu E<lt>marius@ieval.roE<gt>
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright (C) 2014-2015 by Marius Gavrilescu
+Copyright (C) 2014-2016 by Marius Gavrilescu
 
 This library is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself, either Perl version 5.20.1 or,
This page took 0.023385 seconds and 4 git commands to generate.