From b35cbc0d6ca5baf03ffbeb2b9a375fa71f4d0ad3 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sat, 12 Mar 2016 20:05:03 +0000 Subject: [PATCH] Bump version and update Changes --- Changes | 6 ++++++ README | 4 ++-- gruntmaster-opener | 2 +- lib/Gruntmaster/App.pm | 4 ++-- lib/Gruntmaster/App/Command.pm | 4 ++-- lib/Gruntmaster/App/Command/Add.pm | 4 ++-- lib/Gruntmaster/App/Command/Edit.pm | 4 ++-- lib/Gruntmaster/App/Command/Get.pm | 4 ++-- lib/Gruntmaster/App/Command/List.pm | 4 ++-- lib/Gruntmaster/App/Command/Rerun.pm | 4 ++-- lib/Gruntmaster/App/Command/Rm.pm | 4 ++-- lib/Gruntmaster/App/Command/Set.pm | 4 ++-- lib/Gruntmaster/App/Command/Show.pm | 4 ++-- lib/Gruntmaster/Data.pm | 4 ++-- lib/Gruntmaster/Opener.pm | 4 ++-- 15 files changed, 33 insertions(+), 27 deletions(-) diff --git a/Changes b/Changes index 11ba3f4..fb6bc2a 100644 --- 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 e0768a8..1f4f020 100644 --- 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, diff --git a/gruntmaster-opener b/gruntmaster-opener index f0914b9..dbdf739 100755 --- a/gruntmaster-opener +++ b/gruntmaster-opener @@ -38,7 +38,7 @@ Marius Gavrilescu Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App.pm b/lib/Gruntmaster/App.pm index 61805a4..4a93a16 100644 --- a/lib/Gruntmaster/App.pm +++ b/lib/Gruntmaster/App.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command.pm b/lib/Gruntmaster/App/Command.pm index 5408c6d..d0b7602 100644 --- a/lib/Gruntmaster/App/Command.pm +++ b/lib/Gruntmaster/App/Command.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Add.pm b/lib/Gruntmaster/App/Command/Add.pm index 38f7836..e3a596b 100644 --- a/lib/Gruntmaster/App/Command/Add.pm +++ b/lib/Gruntmaster/App/Command/Add.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Edit.pm b/lib/Gruntmaster/App/Command/Edit.pm index 3257903..00a0582 100644 --- a/lib/Gruntmaster/App/Command/Edit.pm +++ b/lib/Gruntmaster/App/Command/Edit.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Get.pm b/lib/Gruntmaster/App/Command/Get.pm index c751b4c..cba5b68 100644 --- a/lib/Gruntmaster/App/Command/Get.pm +++ b/lib/Gruntmaster/App/Command/Get.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/List.pm b/lib/Gruntmaster/App/Command/List.pm index 70b7f0f..7db0ea3 100644 --- a/lib/Gruntmaster/App/Command/List.pm +++ b/lib/Gruntmaster/App/Command/List.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Rerun.pm b/lib/Gruntmaster/App/Command/Rerun.pm index 4856b33..b12dda0 100644 --- a/lib/Gruntmaster/App/Command/Rerun.pm +++ b/lib/Gruntmaster/App/Command/Rerun.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Rm.pm b/lib/Gruntmaster/App/Command/Rm.pm index 0ddb030..247ca63 100644 --- a/lib/Gruntmaster/App/Command/Rm.pm +++ b/lib/Gruntmaster/App/Command/Rm.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Set.pm b/lib/Gruntmaster/App/Command/Set.pm index 2624ce4..e1f70da 100644 --- a/lib/Gruntmaster/App/Command/Set.pm +++ b/lib/Gruntmaster/App/Command/Set.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/App/Command/Show.pm b/lib/Gruntmaster/App/Command/Show.pm index 55e05e1..af2e301 100644 --- a/lib/Gruntmaster/App/Command/Show.pm +++ b/lib/Gruntmaster/App/Command/Show.pm @@ -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, Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index dd6c73f..c6b6f6f 100644 --- a/lib/Gruntmaster/Data.pm +++ b/lib/Gruntmaster/Data.pm @@ -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 Emarius@ieval.roE =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, diff --git a/lib/Gruntmaster/Opener.pm b/lib/Gruntmaster/Opener.pm index d47db03..9b0bb44 100644 --- a/lib/Gruntmaster/Opener.pm +++ b/lib/Gruntmaster/Opener.pm @@ -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 Emarius@ieval.roE =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, -- 2.30.2