Skip to content

Commit

Permalink
Release version v1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeaubert committed Jul 25, 2016
1 parent bd86710 commit f08f0ac
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for App-GitHooks-Plugin-ForceBranchNamePattern

v1.1.3 2016-07-24
- Improved test coverage.

v1.1.2 2016-07-24
- Fixed formatting in documentation.

Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"provides" : {
"App::GitHooks::Plugin::ForceBranchNamePattern" : {
"file" : "lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm",
"version" : "v1.1.2"
"version" : "v1.1.3"
}
},
"release_status" : "stable",
Expand All @@ -56,5 +56,5 @@
"url" : "https://github.com/guillaumeaubert/App-GitHooks-Plugin-ForceBranchNamePattern"
}
},
"version" : "v1.1.2"
"version" : "v1.1.3"
}
4 changes: 2 additions & 2 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name: App-GitHooks-Plugin-ForceBranchNamePattern
provides:
App::GitHooks::Plugin::ForceBranchNamePattern:
file: lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm
version: v1.1.2
version: v1.1.3
requires:
App::GitHooks: '0'
Log::Any: '0'
Expand All @@ -31,4 +31,4 @@ resources:
homepage: https://metacpan.org/release/App-GitHooks-Plugin-ForceBranchNamePattern
license: http://dev.perl.org/licenses/
repository: https://github.com/guillaumeaubert/App-GitHooks-Plugin-ForceBranchNamePattern
version: v1.1.2
version: v1.1.3
20 changes: 10 additions & 10 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ require 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm',
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'App::GitHooks::Plugin::ForceBranchNamePattern',
'PREREQ_PM' => {
'Capture::Tiny' => 0,
'Test::More' => '0.94',
'Test::Requires::Git' => '1.005',
'App::GitHooks' => 0,
'Log::Any' => 0,
'Test::Exception' => 0,
'Test::Git' => 0,
'Test::Requires::Git' => '1.005',
'Test::FailWarnings' => 0
'Test::FailWarnings' => 0,
'Capture::Tiny' => 0,
'Test::Exception' => 0
},
'EXE_FILES' => [],
'NAME' => 'App::GitHooks::Plugin::ForceBranchNamePattern',
'INSTALLDIRS' => 'site',
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm',
'test' => {
'TESTS' => 't/*.t'
}
},
'EXE_FILES' => [],
'PL_FILES' => {}
)
;
4 changes: 2 additions & 2 deletions lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ branches, since Puppet environment names must be strictly alphanumeric.
=head1 VERSION
Version 1.1.2
Version 1.1.3
=cut

our $VERSION = '1.1.2';
our $VERSION = '1.1.3';


=head1 MINIMUM GIT VERSION
Expand Down

0 comments on commit f08f0ac

Please sign in to comment.