From fc90d8622c3d04e3afd840deab0455f90fea4e9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0pa=C4=8Dek?= Date: Wed, 16 Sep 2015 09:52:51 +0200 Subject: [PATCH] Prepare for 0.25 version. --- Changes | 2 ++ META.yml | 2 +- Makefile.PL | 2 +- Pure.pm | 4 ++-- Pure/AllError.pm | 4 ++-- Pure/Die.pm | 4 ++-- Pure/Error.pm | 4 ++-- Pure/ErrorList.pm | 4 ++-- Pure/Print.pm | 4 ++-- Pure/PrintVar.pm | 4 ++-- Pure/Utils.pm | 4 ++-- README | 2 +- t/Error-Pure-AllError/02-version.t | 2 +- t/Error-Pure-Die/02-version.t | 2 +- t/Error-Pure-Error/02-version.t | 2 +- t/Error-Pure-ErrorList/02-version.t | 2 +- t/Error-Pure-Print/02-version.t | 2 +- t/Error-Pure-PrintVar/02-version.t | 2 +- t/Error-Pure-Utils/02-version.t | 2 +- t/Error-Pure/02-version.t | 2 +- 20 files changed, 29 insertions(+), 27 deletions(-) diff --git a/Changes b/Changes index 35aca5b..edb2c23 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +0.25 + 0.24 2015-09-16T09:50:44+02:00 [Common] - Fix author requires. diff --git a/META.yml b/META.yml index 0d1d432..e952efa 100644 --- a/META.yml +++ b/META.yml @@ -40,4 +40,4 @@ resources: homepage: https://github.com/tupinek/Error-Pure license: http://opensource.org/licenses/bsd-license.php repository: git://github.com/tupinek/Error-Pure -version: '0.24' +version: '0.25' diff --git a/Makefile.PL b/Makefile.PL index e1f80cd..9e4d7b1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -33,7 +33,7 @@ test_requires 'IO::CaptureOutput' => 1.02; test_requires 'Test::More' => 0; test_requires 'Test::NoWarnings' => 0; tests_recursive; -version '0.24'; +version '0.25'; # Run. WriteAll(); diff --git a/Pure.pm b/Pure.pm index 8678217..466d59d 100644 --- a/Pure.pm +++ b/Pure.pm @@ -16,7 +16,7 @@ Readonly::Scalar my $TYPE_DEFAULT => 'Die'; Readonly::Scalar my $LEVEL_DEFAULT => 4; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Type of error. our $TYPE = $TYPE_DEFAULT; @@ -246,6 +246,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/AllError.pm b/Pure/AllError.pm index 5fcbee6..c6a089e 100644 --- a/Pure/AllError.pm +++ b/Pure/AllError.pm @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err); Readonly::Scalar my $EVAL => 'eval {...}'; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Process error. sub err { @@ -122,6 +122,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/Die.pm b/Pure/Die.pm index 7bd6c3f..2924c25 100644 --- a/Pure/Die.pm +++ b/Pure/Die.pm @@ -11,7 +11,7 @@ use List::MoreUtils qw(none); use Readonly; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Constants. Readonly::Array our @EXPORT_OK => qw(err); @@ -182,6 +182,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/Error.pm b/Pure/Error.pm index 5ad4361..4aefa53 100644 --- a/Pure/Error.pm +++ b/Pure/Error.pm @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err); Readonly::Scalar my $EVAL => 'eval {...}'; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Process error. sub err { @@ -133,6 +133,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/ErrorList.pm b/Pure/ErrorList.pm index 780fb85..63f0839 100644 --- a/Pure/ErrorList.pm +++ b/Pure/ErrorList.pm @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err); Readonly::Scalar my $EVAL => 'eval {...}'; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Process error. sub err { @@ -154,6 +154,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/Print.pm b/Pure/Print.pm index 40e7aa0..0f550d4 100644 --- a/Pure/Print.pm +++ b/Pure/Print.pm @@ -17,7 +17,7 @@ Readonly::Scalar my $EMPTY_STR => q{}; Readonly::Scalar my $EVAL => 'eval {...}'; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Process error. sub err { @@ -162,6 +162,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/PrintVar.pm b/Pure/PrintVar.pm index 9153620..30d3a0f 100644 --- a/Pure/PrintVar.pm +++ b/Pure/PrintVar.pm @@ -17,7 +17,7 @@ Readonly::Scalar my $EMPTY_STR => q{}; Readonly::Scalar my $EVAL => 'eval {...}'; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Process error. sub err { @@ -164,6 +164,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/Pure/Utils.pm b/Pure/Utils.pm index b5f4626..57df7b0 100644 --- a/Pure/Utils.pm +++ b/Pure/Utils.pm @@ -10,7 +10,7 @@ use Cwd qw(abs_path); use Readonly; # Version. -our $VERSION = 0.24; +our $VERSION = 0.25; # Constants. Readonly::Array our @EXPORT_OK => qw(clean err_get err_helper err_msg err_msg_hr); @@ -435,6 +435,6 @@ L =head1 VERSION -0.24 +0.25 =cut diff --git a/README b/README index e181d94..437b03a 100644 --- a/README +++ b/README @@ -151,5 +151,5 @@ LICENSE AND COPYRIGHT BSD 2-Clause License VERSION - 0.24 + 0.25 diff --git a/t/Error-Pure-AllError/02-version.t b/t/Error-Pure-AllError/02-version.t index 51a9149..8806abd 100644 --- a/t/Error-Pure-AllError/02-version.t +++ b/t/Error-Pure-AllError/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::AllError::VERSION, 0.24, 'Version.'); +is($Error::Pure::AllError::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-Die/02-version.t b/t/Error-Pure-Die/02-version.t index 76a8f4c..fc6ca79 100644 --- a/t/Error-Pure-Die/02-version.t +++ b/t/Error-Pure-Die/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::Die::VERSION, 0.24, 'Version.'); +is($Error::Pure::Die::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-Error/02-version.t b/t/Error-Pure-Error/02-version.t index e05ba20..87e91ee 100644 --- a/t/Error-Pure-Error/02-version.t +++ b/t/Error-Pure-Error/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::Error::VERSION, 0.24, 'Version.'); +is($Error::Pure::Error::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-ErrorList/02-version.t b/t/Error-Pure-ErrorList/02-version.t index 7027674..08cdd4c 100644 --- a/t/Error-Pure-ErrorList/02-version.t +++ b/t/Error-Pure-ErrorList/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::ErrorList::VERSION, 0.24, 'Version.'); +is($Error::Pure::ErrorList::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-Print/02-version.t b/t/Error-Pure-Print/02-version.t index e6a2f78..25678f6 100644 --- a/t/Error-Pure-Print/02-version.t +++ b/t/Error-Pure-Print/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::Print::VERSION, 0.24, 'Version.'); +is($Error::Pure::Print::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-PrintVar/02-version.t b/t/Error-Pure-PrintVar/02-version.t index 2e7f7eb..95d05f8 100644 --- a/t/Error-Pure-PrintVar/02-version.t +++ b/t/Error-Pure-PrintVar/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::PrintVar::VERSION, 0.24, 'Version.'); +is($Error::Pure::PrintVar::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure-Utils/02-version.t b/t/Error-Pure-Utils/02-version.t index 8fc90c8..77b80be 100644 --- a/t/Error-Pure-Utils/02-version.t +++ b/t/Error-Pure-Utils/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::Utils::VERSION, 0.24, 'Version.'); +is($Error::Pure::Utils::VERSION, 0.25, 'Version.'); diff --git a/t/Error-Pure/02-version.t b/t/Error-Pure/02-version.t index 0c7aca5..c7bad6b 100644 --- a/t/Error-Pure/02-version.t +++ b/t/Error-Pure/02-version.t @@ -8,4 +8,4 @@ use Test::More 'tests' => 2; use Test::NoWarnings; # Test. -is($Error::Pure::VERSION, 0.24, 'Version.'); +is($Error::Pure::VERSION, 0.25, 'Version.');