Skip to content

Commit

Permalink
Prepare for 0.08 version.
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-josef-spacek committed May 16, 2012
1 parent 05d682b commit 292b1b5
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 27 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.08

0.07 (May 16, 2012)
- Add examples/ directory.

Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ resources:
type: git
url: git://github.com/tupinek/Error-Pure
web: https://github.com/tupinek/Error-Pure
version: 0.07
version: 0.08
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ test_requires 'Test::More' => 0;
test_requires 'Test::Pod' => 0;
test_requires 'Test::Pod::Coverage' => 0;
tests_recursive;
version '0.07';
version '0.08';

# Run.
WriteAll();
4 changes: 2 additions & 2 deletions Pure.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Readonly::Scalar my $TYPE_DEFAULT => 'Die';
Readonly::Scalar my $LEVEL_DEFAULT => 4;

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Type of error.
our $TYPE = $TYPE_DEFAULT;
Expand Down Expand Up @@ -210,6 +210,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/AllError.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err);
Readonly::Scalar my $EVAL => 'eval {...}';

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -126,6 +126,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/Die.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use List::MoreUtils qw(none);
use Readonly;

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Constants.
Readonly::Array our @EXPORT_OK => qw(err);
Expand Down Expand Up @@ -186,6 +186,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/Error.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err);
Readonly::Scalar my $EVAL => 'eval {...}';

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -137,6 +137,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/ErrorList.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Readonly::Array our @EXPORT_OK => qw(err);
Readonly::Scalar my $EVAL => 'eval {...}';

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -158,6 +158,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/Output/Text.pm
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Readonly::Array our @EXPORT_OK => qw(err_bt_pretty err_line err_line_all);
Readonly::Scalar my $SPACE => q{ };

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Pretty print of backtrace.
sub err_bt_pretty {
Expand Down Expand Up @@ -324,6 +324,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/Print.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Readonly::Scalar my $EMPTY_STR => q{};
Readonly::Scalar my $EVAL => 'eval {...}';

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Ignore die signal.
$SIG{__DIE__} = 'IGNORE';
Expand Down Expand Up @@ -145,6 +145,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
4 changes: 2 additions & 2 deletions Pure/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use Cwd qw(abs_path);
use Readonly;

# Version.
our $VERSION = 0.07;
our $VERSION = 0.08;

# Constants.
Readonly::Array our @EXPORT_OK => qw(clean err_get err_helper);
Expand Down Expand Up @@ -318,6 +318,6 @@ BSD license.
=head1 VERSION
0.07
0.08
=cut
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,5 @@ LICENSE AND COPYRIGHT
BSD license.

VERSION
0.07
0.08

2 changes: 1 addition & 1 deletion t/Error-Pure-AllError/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::AllError;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::AllError::VERSION, 0.07, 'Version.');
is($Error::Pure::AllError::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Die/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::Die;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::Die::VERSION, 0.07, 'Version.');
is($Error::Pure::Die::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Error/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::Error;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::Error::VERSION, 0.07, 'Version.');
is($Error::Pure::Error::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-ErrorList/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::ErrorList;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::ErrorList::VERSION, 0.07, 'Version.');
is($Error::Pure::ErrorList::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Output-Text/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::Output::Text;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::Output::Text::VERSION, 0.07, 'Version.');
is($Error::Pure::Output::Text::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Print/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::Print;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::Print::VERSION, 0.07, 'Version.');
is($Error::Pure::Print::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure-Utils/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure::Utils;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::Utils::VERSION, 0.07, 'Version.');
is($Error::Pure::Utils::VERSION, 0.08, 'Version.');
2 changes: 1 addition & 1 deletion t/Error-Pure/01-version.t
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ use Error::Pure;
use Test::More 'tests' => 1;

# Test.
is($Error::Pure::VERSION, 0.07, 'Version.');
is($Error::Pure::VERSION, 0.08, 'Version.');

0 comments on commit 292b1b5

Please sign in to comment.