From: Marius Gavrilescu Date: Wed, 23 Apr 2014 08:51:10 +0000 (+0300) Subject: Bump version and update Changes X-Git-Tag: 5999.000_003^0 X-Git-Url: http://git.ieval.ro/?p=gruntmaster-daemon.git;a=commitdiff_plain;h=69ea9358b59a6d8bd566c3af22247e8c2e35320f Bump version and update Changes --- diff --git a/Changes b/Changes index 9326add..a1ae31f 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,16 @@ Revision history for Perl extension Gruntmaster::Daemon. -5999.000_002 2014-02-28T19:23 +5999.000_003 2014-04-23T11:51+03:00 + - Use new Postgres database + - Improve documentation + - Fix interactive problems (use waitpid instead of wait, trap SIGPIPE) + +5999.000_002 2014-02-28T19:23+02:00 - Move most problem attributes outside meta - Pass test number as argument to verifier - Use new varnish-based purge -5999.000_001 2014-02-03T12:41 +5999.000_001 2014-02-03T12:41+02:00 - Change version to something that CPAN::Distnameinfo likes - Add Gruntmaster::Data to PREREQ_PM - Add more POD @@ -13,5 +18,5 @@ Revision history for Perl extension Gruntmaster::Daemon. - Add COPYING and fix license in META.yml - Fix a POD error -5999-TRIAL 2014-01-31T23:58 +5999-TRIAL 2014-01-31T23:58+02:00 - Initial release diff --git a/lib/Gruntmaster/Daemon.pm b/lib/Gruntmaster/Daemon.pm index 6cc6431..4c3d492 100644 --- a/lib/Gruntmaster/Daemon.pm +++ b/lib/Gruntmaster/Daemon.pm @@ -4,7 +4,7 @@ use 5.014000; use strict; use warnings; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; use Gruntmaster::Daemon::Constants qw/ERR/; use Gruntmaster::Daemon::Format qw/prepare_files/; diff --git a/lib/Gruntmaster/Daemon/Constants.pm b/lib/Gruntmaster/Daemon/Constants.pm index eb52456..1171ccb 100644 --- a/lib/Gruntmaster/Daemon/Constants.pm +++ b/lib/Gruntmaster/Daemon/Constants.pm @@ -5,7 +5,7 @@ use strict; use warnings; use parent qw/Exporter/; -our $VERSION = "5999.000_002"; +our $VERSION = "5999.000_003"; use constant +{ # Accepted diff --git a/lib/Gruntmaster/Daemon/Format.pm b/lib/Gruntmaster/Daemon/Format.pm index 866345f..dc75fa1 100644 --- a/lib/Gruntmaster/Daemon/Format.pm +++ b/lib/Gruntmaster/Daemon/Format.pm @@ -15,7 +15,7 @@ use List::MoreUtils qw/natatime/; use Log::Log4perl qw/get_logger/; use IPC::Signal qw/sig_name sig_num/; -our $VERSION = "5999.000_002"; +our $VERSION = "5999.000_003"; our @EXPORT_OK = qw/prepare_files/; ################################################## diff --git a/lib/Gruntmaster/Daemon/Generator/File.pm b/lib/Gruntmaster/Daemon/Generator/File.pm index 847e915..2702dba 100644 --- a/lib/Gruntmaster/Daemon/Generator/File.pm +++ b/lib/Gruntmaster/Daemon/Generator/File.pm @@ -8,7 +8,7 @@ use File::Copy qw/copy/; use File::Slurp qw/write_file/; use Log::Log4perl qw/get_logger/; -our $VERSION = "5999.000_002"; +our $VERSION = "5999.000_003"; ################################################## diff --git a/lib/Gruntmaster/Daemon/Generator/Run.pm b/lib/Gruntmaster/Daemon/Generator/Run.pm index 195f336..6892745 100644 --- a/lib/Gruntmaster/Daemon/Generator/Run.pm +++ b/lib/Gruntmaster/Daemon/Generator/Run.pm @@ -6,7 +6,7 @@ use warnings; use Log::Log4perl qw/get_logger/; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; ################################################## diff --git a/lib/Gruntmaster/Daemon/Generator/Undef.pm b/lib/Gruntmaster/Daemon/Generator/Undef.pm index 5df3762..6b5a56b 100644 --- a/lib/Gruntmaster/Daemon/Generator/Undef.pm +++ b/lib/Gruntmaster/Daemon/Generator/Undef.pm @@ -6,7 +6,7 @@ use warnings; use Log::Log4perl qw/get_logger/; -our $VERSION = "5999.000_002"; +our $VERSION = "5999.000_003"; ################################################## diff --git a/lib/Gruntmaster/Daemon/Judge/Absolute.pm b/lib/Gruntmaster/Daemon/Judge/Absolute.pm index d7e2ec0..45745e5 100644 --- a/lib/Gruntmaster/Daemon/Judge/Absolute.pm +++ b/lib/Gruntmaster/Daemon/Judge/Absolute.pm @@ -6,7 +6,7 @@ use warnings; use Gruntmaster::Daemon::Constants qw/AC/; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; ################################################## diff --git a/lib/Gruntmaster/Daemon/Judge/Points.pm b/lib/Gruntmaster/Daemon/Judge/Points.pm index 230e56d..dc637f0 100644 --- a/lib/Gruntmaster/Daemon/Judge/Points.pm +++ b/lib/Gruntmaster/Daemon/Judge/Points.pm @@ -8,7 +8,7 @@ use Gruntmaster::Daemon::Constants qw/AC REJ/; use List::Util qw/sum/; use Log::Log4perl qw/get_logger/; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; ################################################## diff --git a/lib/Gruntmaster/Daemon/Runner/File.pm b/lib/Gruntmaster/Daemon/Runner/File.pm index 55afd70..6d7b8f8 100644 --- a/lib/Gruntmaster/Daemon/Runner/File.pm +++ b/lib/Gruntmaster/Daemon/Runner/File.pm @@ -8,7 +8,7 @@ use Gruntmaster::Daemon::Constants qw/WA/; use File::Slurp qw/slurp/; use Log::Log4perl qw/get_logger/; -our $VERSION = "5999.000_002"; +our $VERSION = "5999.000_003"; ################################################## diff --git a/lib/Gruntmaster/Daemon/Runner/Interactive.pm b/lib/Gruntmaster/Daemon/Runner/Interactive.pm index affac18..aaaadd7 100644 --- a/lib/Gruntmaster/Daemon/Runner/Interactive.pm +++ b/lib/Gruntmaster/Daemon/Runner/Interactive.pm @@ -10,7 +10,7 @@ use Log::Log4perl qw/get_logger/; use POSIX qw/mkfifo/; use Try::Tiny; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; ################################################## diff --git a/lib/Gruntmaster/Daemon/Runner/Verifier.pm b/lib/Gruntmaster/Daemon/Runner/Verifier.pm index f9ee43b..bb8652d 100644 --- a/lib/Gruntmaster/Daemon/Runner/Verifier.pm +++ b/lib/Gruntmaster/Daemon/Runner/Verifier.pm @@ -9,7 +9,7 @@ use File::Slurp qw/slurp/; use Log::Log4perl qw/get_logger/; use Try::Tiny; -our $VERSION = '5999.000_002'; +our $VERSION = '5999.000_003'; ##################################################