Skip to content

Commit

Permalink
Prepare for 0.25 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed Sep 16, 2015
1 parent 0ba8b84 commit fc90d86
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 27 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,3 +1,5 @@
0.25

0.24 2015-09-16T09:50:44+02:00
[Common]
- Fix author requires.
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -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();
4 changes: 2 additions & 2 deletions Pure.pm
Expand Up @@ -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;
Expand Down Expand Up @@ -246,6 +246,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/AllError.pm
Expand Up @@ -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 {
Expand Down Expand Up @@ -122,6 +122,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/Die.pm
Expand Up @@ -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);
Expand Down Expand Up @@ -182,6 +182,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/Error.pm
Expand Up @@ -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 {
Expand Down Expand Up @@ -133,6 +133,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/ErrorList.pm
Expand Up @@ -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 {
Expand Down Expand Up @@ -154,6 +154,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/Print.pm
Expand Up @@ -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 {
Expand Down Expand Up @@ -162,6 +162,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/PrintVar.pm
Expand Up @@ -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 {
Expand Down Expand Up @@ -164,6 +164,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
4 changes: 2 additions & 2 deletions Pure/Utils.pm
Expand Up @@ -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);
Expand Down Expand Up @@ -435,6 +435,6 @@ L<http://skim.cz>
=head1 VERSION
0.24
0.25
=cut
2 changes: 1 addition & 1 deletion README
Expand Up @@ -151,5 +151,5 @@ LICENSE AND COPYRIGHT
BSD 2-Clause License

VERSION
0.24
0.25

2 changes: 1 addition & 1 deletion t/Error-Pure-AllError/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Die/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Error/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-ErrorList/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Print/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-PrintVar/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Utils/02-version.t
Expand Up @@ -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.');
2 changes: 1 addition & 1 deletion t/Error-Pure/02-version.t
Expand Up @@ -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.');

0 comments on commit fc90d86

Please sign in to comment.