From e1b6fd19f5724ce68ee92aaeae1c0ddf7a6a2561 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Fri, 2 Oct 2015 22:10:33 +0300 Subject: [PATCH] Bump version and update Changes --- Changes | 8 ++++++++ README | 2 +- lib/Gruntmaster/App.pm | 2 +- lib/Gruntmaster/App/Command.pm | 2 +- lib/Gruntmaster/App/Command/Add.pm | 2 +- lib/Gruntmaster/App/Command/Get.pm | 2 +- lib/Gruntmaster/App/Command/List.pm | 2 +- lib/Gruntmaster/App/Command/Rerun.pm | 2 +- lib/Gruntmaster/App/Command/Rm.pm | 2 +- lib/Gruntmaster/App/Command/Set.pm | 2 +- lib/Gruntmaster/App/Command/Show.pm | 2 +- lib/Gruntmaster/Data.pm | 2 +- lib/Gruntmaster/Opener.pm | 2 +- 13 files changed, 20 insertions(+), 12 deletions(-) diff --git a/Changes b/Changes index 88c3ca1..af900b4 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,13 @@ Revision history for Perl extension Gruntmaster::Data. +5999.000_014 2015-10-02T22:10+03:00 + - Almost fit for a stable release (more real-world testing needed) + - Replace gruntmaster-* tools with an App::Cmd-based script + - Replace DBIx::Class with DBIx::Simple + - Add sample database and more tests + - Add gruntmaster-opener + - Many other smaller changes + 5999.000_013 2014-12-20T23:20+02:00 - Improve user_list performance - Sort problem and contest lists in user_entry diff --git a/README b/README index a8d695c..84f38d2 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Gruntmaster-Data version 5999.000_013 +Gruntmaster-Data version 5999.000_014 ===================================== This distribution contains: diff --git a/lib/Gruntmaster/App.pm b/lib/Gruntmaster/App.pm index 4273526..c867f70 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_004'; +our $VERSION = '5999.000_014'; use App::Cmd::Setup '-app'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command.pm b/lib/Gruntmaster/App/Command.pm index 23396c6..37c0e2a 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_004'; +our $VERSION = '5999.000_014'; use parent qw/App::Cmd::Command/; use Pod::Usage; diff --git a/lib/Gruntmaster/App/Command/Add.pm b/lib/Gruntmaster/App/Command/Add.pm index 36a8156..8f84dc3 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/Get.pm b/lib/Gruntmaster/App/Command/Get.pm index 9c10526..e0febf9 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/List.pm b/lib/Gruntmaster/App/Command/List.pm index b2b3ab5..ac81074 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/Rerun.pm b/lib/Gruntmaster/App/Command/Rerun.pm index 228fd55..c309eaa 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/Rm.pm b/lib/Gruntmaster/App/Command/Rm.pm index 6831c67..bf0e856 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/Set.pm b/lib/Gruntmaster/App/Command/Set.pm index d18726e..c342e47 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/App/Command/Show.pm b/lib/Gruntmaster/App/Command/Show.pm index df9367a..e62aa1c 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_004'; +our $VERSION = '5999.000_014'; use Gruntmaster::App '-command'; use Gruntmaster::Data; diff --git a/lib/Gruntmaster/Data.pm b/lib/Gruntmaster/Data.pm index d5d7152..530aba7 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_013'; +our $VERSION = '5999.000_014'; 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 take_job finish_job open_problem/; our @EXPORT_OK = @EXPORT; diff --git a/lib/Gruntmaster/Opener.pm b/lib/Gruntmaster/Opener.pm index 8ee43d8..28c2f4c 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_013'; +our $VERSION = '5999.000_014'; use Date::Parse qw/str2time/; use Gruntmaster::Data; -- 2.30.2