Bump version and update Changes master 6000.001
authorMarius Gavrilescu <marius@ieval.ro>
Wed, 3 Oct 2018 18:16:43 +0000 (21:16 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Wed, 3 Oct 2018 18:16:43 +0000 (21:16 +0300)
14 files changed:
Changes
README
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 fb6bc2a39fdc22856fb5b0598417e24f11da2b6a..bd526784e9196f9307076689b1964c1d0f6d3dea 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Gruntmaster::Data.
 
+6000.001 2018-10-03T21:15+03:00
+ - First stable release
+ - Computation of standings now ignores jobs that are not finished
+ - Set search_path in dbinit to make it easy to put all gruntmaster
+   tables into their own schema.
+
 5999.000_016 2016-03-12T20:05+02:00
  - Add gm edit command
  - Make gm rerun also work with problems
diff --git a/README b/README
index 1f4f0202e4cd9ba369b5b6eba497f7037d13bba2..0811dc58487cc6915ddc639685425a4c57d80277 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-Gruntmaster-Data version 5999.000_016
-=====================================
+Gruntmaster-Data version 6000.001
+=================================
 
 This distribution contains:
 
index 4a93a163d6bc8849fc1006ed6b715ab3b6413c75..bc69c0a8e07634f607d02beec71c72d630c1667f 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use App::Cmd::Setup '-app';
 use Gruntmaster::Data;
index d0b760219229f775678b6545422eb58f7fbbdfe5..b60993aa2fc667dfd2d5dd915dce14c8c0bc9b39 100644 (file)
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use re '/s';
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use parent qw/App::Cmd::Command/;
 use Pod::Usage;
index e3a596beeb21c5c058f2b349de86a0ab8d20ffa4..04cc8d4d0a35c5f5307312805f493f559339cf7c 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Add;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index 00a058273b2227d1a5c0b787ae4855f0ffac7d85..7552a936959bc0db5ba8f1e4d2ceeb82d2d5934b 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Edit;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use File::Temp qw/tempfile/;
 use File::Slurp qw/read_file write_file/;
index cba5b68d8695b74030d6304fa224ef6ac8f13479..d737551ab32da374973f42f541e890f3ac1471d1 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Get;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index 7db0ea3f8d0687a324810881c1f55adb52c11bea..df8076ce4e973126262a5b3ec91f1686dc2e53a7 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::List;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index b12dda089cb97b7db3b50e712ae6acdb1f1e682b..25a03c487c4375d39e1044f3df3a780ba80a984e 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Rerun;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index 247ca63c3520c0e3ff0b9bafad2e749501eca05e..f8075cd126691f392a6527abb779b940977aa5ec 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Rm;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index e1f70da8201e0bc27cb7b857e100b9e195c7cca4..e1beade0eb7b1bfaf285cb6a0504b3788fd0e0bf 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Set;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index af2e301011c43726668f92e9e7d1ad578a9b01e5..457ae8a3142f0f30a307ac3d6adf983aa8d46d34 100644 (file)
@@ -3,7 +3,7 @@ package Gruntmaster::App::Command::Show;
 use 5.014000;
 use warnings;
 
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Gruntmaster::App '-command';
 use Gruntmaster::Data;
index 7b90c872df7d2717aee7261f99e3e84b417e79c2..e2b0f8f3410e71c46bac66f81c178838b5f2246f 100644 (file)
@@ -3,7 +3,7 @@ use 5.014;
 use warnings;
 
 use parent qw/Exporter/;
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 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;
 
index 9b0bb4400ab22fe33a194f5e6e45f63d3ab11eeb..92c8c39ad0bf0231414b538d8584289c578aa806 100644 (file)
@@ -7,7 +7,7 @@ use re '/s';
 
 our @EXPORT = qw/handle_line/;
 our @EXPORT_OK = @EXPORT;
-our $VERSION = '5999.000_016';
+our $VERSION = '6000.001';
 
 use Date::Parse qw/str2time/;
 use Gruntmaster::Data;
This page took 0.021844 seconds and 4 git commands to generate.