Skip to content

Commit

Permalink
Bump version after release
Browse files Browse the repository at this point in the history
  • Loading branch information
autarch committed Oct 6, 2016
1 parent e04ee9c commit 7479c9d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Expand Up @@ -20,7 +20,7 @@ my %module_build_args = (
"Ilya Martynov <ilya\@martynov.org>"
],
"dist_name" => "Params-Validate",
"dist_version" => "1.26",
"dist_version" => "1.27",
"license" => "artistic_2",
"module_name" => "Params::Validate",
"recursive_test_files" => 1,
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -42,7 +42,7 @@ my %WriteMakefileArgs = (
"lib" => 0,
"overload" => 0
},
"VERSION" => "1.26",
"VERSION" => "1.27",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Params/Validate.pm
Expand Up @@ -5,7 +5,7 @@ use 5.008001;
use strict;
use warnings;

our $VERSION = '1.26';
our $VERSION = '1.27';

use Exporter;
use Module::Implementation;
Expand Down
2 changes: 1 addition & 1 deletion lib/Params/Validate/Constants.pm
Expand Up @@ -3,7 +3,7 @@ package Params::Validate::Constants;
use strict;
use warnings;

our $VERSION = '1.26';
our $VERSION = '1.27';

our @ISA = 'Exporter';

Expand Down
2 changes: 1 addition & 1 deletion lib/Params/Validate/PP.pm
Expand Up @@ -3,7 +3,7 @@ package Params::Validate::PP;
use strict;
use warnings;

our $VERSION = '1.26';
our $VERSION = '1.27';

use Params::Validate::Constants;
use Scalar::Util 1.10 ();
Expand Down
2 changes: 1 addition & 1 deletion lib/Params/Validate/XS.pm
Expand Up @@ -3,7 +3,7 @@ package Params::Validate::XS;
use strict;
use warnings;

our $VERSION = '1.26';
our $VERSION = '1.27';

use Carp;

Expand Down
2 changes: 1 addition & 1 deletion lib/Params/ValidatePP.pm
@@ -1,7 +1,7 @@
package # hide from PAUSE
Params::Validate;

our $VERSION = '1.26';
our $VERSION = '1.27';

BEGIN { $ENV{PARAMS_VALIDATE_IMPLEMENTATION} = 'PP' }
use Params::Validate;
Expand Down
2 changes: 1 addition & 1 deletion lib/Params/ValidateXS.pm
@@ -1,7 +1,7 @@
package # hide from PAUSE
Params::Validate;

our $VERSION = '1.26';
our $VERSION = '1.27';

BEGIN { $ENV{PARAMS_VALIDATE_IMPLEMENTATION} = 'XS' }
use Params::Validate;
Expand Down

0 comments on commit 7479c9d

Please sign in to comment.