Skip to content

Commit

Permalink
Prepare for 0.20 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed Dec 7, 2014
1 parent 6cfa21b commit 2bab49d
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.20

0.19 2014-12-07T01:13:44+01:00
[Common]
- Improve LICENSE AND COPYRIGHT section in doc.
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Expand Up @@ -41,4 +41,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.19'
version: '0.20'
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -32,7 +32,7 @@ test_requires 'Test::NoWarnings' => 0;
test_requires 'Test::Pod' => 0;
test_requires 'Test::Pod::Coverage' => 0;
tests_recursive;
version '0.19';
version '0.20';

# 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.19;
our $VERSION = 0.20;

# Type of error.
our $TYPE = $TYPE_DEFAULT;
Expand Down Expand Up @@ -258,6 +258,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -130,6 +130,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Constants.
Readonly::Array our @EXPORT_OK => qw(err);
Expand Down Expand Up @@ -189,6 +189,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -141,6 +141,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -162,6 +162,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -170,6 +170,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -172,6 +172,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=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.19;
our $VERSION = 0.20;

# Constants.
Readonly::Array our @EXPORT_OK => qw(clean err_get err_helper err_msg err_msg_hr);
Expand Down Expand Up @@ -439,6 +439,6 @@ L<http://skim.cz>
=head1 VERSION
0.19
0.20
=cut
2 changes: 1 addition & 1 deletion README
Expand Up @@ -155,5 +155,5 @@ LICENSE AND COPYRIGHT
BSD 2-Clause License

VERSION
0.19
0.20

2 changes: 1 addition & 1 deletion t/Error-Pure-AllError/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::AllError::VERSION, 0.19, 'Version.');
is($Error::Pure::AllError::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Die/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::Die::VERSION, 0.19, 'Version.');
is($Error::Pure::Die::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Error/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::Error::VERSION, 0.19, 'Version.');
is($Error::Pure::Error::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-ErrorList/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::ErrorList::VERSION, 0.19, 'Version.');
is($Error::Pure::ErrorList::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Print/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::Print::VERSION, 0.19, 'Version.');
is($Error::Pure::Print::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-PrintVar/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::PrintVar::VERSION, 0.19, 'Version.');
is($Error::Pure::PrintVar::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Utils/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::Utils::VERSION, 0.19, 'Version.');
is($Error::Pure::Utils::VERSION, 0.2, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure/01-version.t
Expand Up @@ -8,4 +8,4 @@ use Test::More 'tests' => 2;
use Test::NoWarnings;

# Test.
is($Error::Pure::VERSION, 0.19, 'Version.');
is($Error::Pure::VERSION, 0.2, 'Version.');

0 comments on commit 2bab49d

Please sign in to comment.