Bump version and update Changes 5999.000_004
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 28 Jun 2014 21:36:27 +0000 (00:36 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 28 Jun 2014 21:36:27 +0000 (00:36 +0300)
12 files changed:
Changes
lib/Gruntmaster/Daemon.pm
lib/Gruntmaster/Daemon/Constants.pm
lib/Gruntmaster/Daemon/Format.pm
lib/Gruntmaster/Daemon/Generator/File.pm
lib/Gruntmaster/Daemon/Generator/Run.pm
lib/Gruntmaster/Daemon/Generator/Undef.pm
lib/Gruntmaster/Daemon/Judge/Absolute.pm
lib/Gruntmaster/Daemon/Judge/Points.pm
lib/Gruntmaster/Daemon/Runner/File.pm
lib/Gruntmaster/Daemon/Runner/Interactive.pm
lib/Gruntmaster/Daemon/Runner/Verifier.pm

diff --git a/Changes b/Changes
index a1ae31f50655eebaed0a3294d138be207c318629..08b59dc9a605abfe7581b67de992b87f9163ba33 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension Gruntmaster::Daemon.
 
+5999.000_004 2014-06-29T00:36+03:00
+ - Prevent crashing on compile errors
+ - Add new languages: Go (gc), Go (gccgo), Haskell (ghc)
+
 5999.000_003 2014-04-23T11:51+03:00
  - Use new Postgres database
  - Improve documentation
index 1c8ceceda53f8cd4d76e9084af41bbcdc3cde83c..cb41e0d19f5e8bec50f080980b35fbfe3d78cba1 100644 (file)
@@ -4,7 +4,7 @@ use 5.014000;
 use strict;
 use warnings;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 use Gruntmaster::Daemon::Constants qw/ERR/;
 use Gruntmaster::Daemon::Format qw/prepare_files/;
index 1171ccb2c36f960b98365d69209af12fa5e04ad4..c64f57ae0f4bc40fb8b5c36b2847cc453a79a27d 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use parent qw/Exporter/;
 
-our $VERSION = "5999.000_003";
+our $VERSION = "5999.000_004";
 
 use constant +{
        # Accepted
index 2bfbc1a97f9c1dbc9802a5b14fd00ba9633590cb..cc5f0f83d7114f8cfbffafa62119f664dc7772bc 100644 (file)
@@ -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_003";
+our $VERSION = "5999.000_004";
 our @EXPORT_OK = qw/prepare_files/;
 
 ##################################################
index 2702dbada2b4e249154ec18dbaf86aeea28a33f2..be10f26f2730423db0c44902d46495c145b2149f 100644 (file)
@@ -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_003";
+our $VERSION = "5999.000_004";
 
 ##################################################
 
index 689274588964d1f98737ebae278686835ddb22f4..2ef5200a15c70ac697c76093eea1f351dc8ae3f8 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 
 use Log::Log4perl qw/get_logger/;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
index 6b5a56bcd3b7752a0d5f956680a38423304eb5df..649a5d83b9da1b268d54808186aa107951d56162 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 
 use Log::Log4perl qw/get_logger/;
 
-our $VERSION = "5999.000_003";
+our $VERSION = "5999.000_004";
 
 ##################################################
 
index 45745e58805643d53ede8a82bd6bcdddc3356552..d9fef04f5a5adbd4511b82142affd6793dc45de6 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 
 use Gruntmaster::Daemon::Constants qw/AC/;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
index dc637f079ac4f241eaa8b99081d607770fb8c1fe..26c19f9ab42ba2aee551b535f60d8264290285b6 100644 (file)
@@ -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_003';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
index 6d7b8f81fa8195d8c98469468373df6ee079f50d..a79500cd364cb01c68957790174fff0afc11aa53 100644 (file)
@@ -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_003";
+our $VERSION = "5999.000_004";
 
 ##################################################
 
index aaaadd71de3e70c0c4558a0dab4989803efbcdd4..9118e154960cfc5d35a548576b51335fdc2d844d 100644 (file)
@@ -10,7 +10,7 @@ use Log::Log4perl qw/get_logger/;
 use POSIX qw/mkfifo/;
 use Try::Tiny;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
index bb8652d641c8ba0196fc27755f8cedb25795ddf0..fd267cd88691664685f18f17f480ac099f862570 100644 (file)
@@ -9,7 +9,7 @@ use File::Slurp qw/slurp/;
 use Log::Log4perl qw/get_logger/;
 use Try::Tiny;
 
-our $VERSION = '5999.000_003';
+our $VERSION = '5999.000_004';
 
 ##################################################
 
This page took 0.0188 seconds and 4 git commands to generate.