Skip to content

Commit

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

v1.1.0 2016-07-24
- Relicensed under Perl 5 terms.
- Replaced has_git() by test_requires_git() (GH-1). Thank you, BooK!
- Added support in branch name regex for project_prefixes defined in
the main section of the config file (GH-2).

v1.0.0 2015-05-14
- Public release.
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.0.0"
"version" : "v1.1.0"
}
},
"release_status" : "stable",
Expand All @@ -56,5 +56,5 @@
"url" : "https://github.com/guillaumeaubert/App-GitHooks-Plugin-ForceBranchNamePattern"
}
},
"version" : "v1.0.0"
"version" : "v1.1.0"
}
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.0.0
version: v1.1.0
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.0.0
version: v1.1.0
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' => {},
'EXE_FILES' => [],
'PREREQ_PM' => {
'Test::Exception' => 0,
'Test::More' => '0.94',
'Test::FailWarnings' => 0,
'Test::Requires::Git' => '1.005',
'Capture::Tiny' => 0,
'Log::Any' => 0,
'Test::More' => '0.94',
'App::GitHooks' => 0,
'Test::FailWarnings' => 0,
'Test::Git' => 0
'Log::Any' => 0,
'Test::Git' => 0,
'Test::Exception' => 0
},
'INSTALLDIRS' => 'site',
'PL_FILES' => {},
'NAME' => 'App::GitHooks::Plugin::ForceBranchNamePattern',
'test' => {
'TESTS' => 't/*.t'
}
},
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm',
'INSTALLDIRS' => 'site',
'NAME' => 'App::GitHooks::Plugin::ForceBranchNamePattern'
)
;
4 changes: 2 additions & 2 deletions lib/App/GitHooks/Plugin/ForceBranchNamePattern.pm
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ branches, since Puppet environment names must be strictly alphanumeric.
=head1 VERSION
Version 1.0.0
Version 1.1.0
=cut

our $VERSION = '1.0.0';
our $VERSION = '1.1.0';


=head1 MINIMUM GIT VERSION
Expand Down

0 comments on commit 7837414

Please sign in to comment.