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 Mar 20, 2017
1 parent 5d708c7 commit cee9941
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions Changes
@@ -1,5 +1,11 @@
Revision history for App-GitHooks-Plugin-PgBouncerAuthSyntax

v1.1.0 2017-03-19
- Switched to Test::Requires::Git instead of the now obsolete
Test::Git::has_git(). Thank you, Philippe Bruhat!
- Relicensed under Perl 5 terms.
- Cleaned up dependencies.

v1.0.3 2014-06-08
- Noted git version in tests to help troubleshooting.
- Required git v1.7.4.1.
Expand Down
4 changes: 2 additions & 2 deletions META.json
Expand Up @@ -41,7 +41,7 @@
"provides" : {
"App::GitHooks::Plugin::PgBouncerAuthSyntax" : {
"file" : "lib/App/GitHooks/Plugin/PgBouncerAuthSyntax.pm",
"version" : "v1.0.3"
"version" : "v1.1.0"
}
},
"release_status" : "stable",
Expand All @@ -57,5 +57,5 @@
"url" : "https://github.com/guillaumeaubert/App-GitHooks-Plugin-PgBouncerAuthSyntax"
}
},
"version" : "v1.0.3"
"version" : "v1.1.0"
}
4 changes: 2 additions & 2 deletions META.yml
Expand Up @@ -21,7 +21,7 @@ name: App-GitHooks-Plugin-PgBouncerAuthSyntax
provides:
App::GitHooks::Plugin::PgBouncerAuthSyntax:
file: lib/App/GitHooks/Plugin/PgBouncerAuthSyntax.pm
version: v1.0.3
version: v1.1.0
requires:
App::GitHooks: '0'
Carp: '0'
Expand All @@ -32,4 +32,4 @@ resources:
homepage: https://metacpan.org/release/App-GitHooks-Plugin-PgBouncerAuthSyntax
license: http://dev.perl.org/licenses/
repository: https://github.com/guillaumeaubert/App-GitHooks-Plugin-PgBouncerAuthSyntax
version: v1.0.3
version: v1.1.0
16 changes: 8 additions & 8 deletions Makefile.PL
Expand Up @@ -3,24 +3,24 @@ require 5.010;
use ExtUtils::MakeMaker;
WriteMakefile
(
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/PgBouncerAuthSyntax.pm',
'INSTALLDIRS' => 'site',
'NAME' => 'App::GitHooks::Plugin::PgBouncerAuthSyntax',
'test' => {
'TESTS' => 't/*.t'
},
'VERSION_FROM' => 'lib/App/GitHooks/Plugin/PgBouncerAuthSyntax.pm',
'PREREQ_PM' => {
'Test::Requires::Git' => '1.005',
'Test::FailWarnings' => 0,
'Capture::Tiny' => 0,
'File::Slurp' => 0,
'Carp' => 0,
'Test::More' => '0.94',
'Git::Repository' => 0,
'Capture::Tiny' => 0,
'Test::Requires::Git' => '1.005',
'App::GitHooks' => 0,
'Test::Exception' => 0,
'File::Slurp' => 0,
'Test::More' => '0.94'
'Test::FailWarnings' => 0
},
'EXE_FILES' => [],
'INSTALLDIRS' => 'site',
'NAME' => 'App::GitHooks::Plugin::PgBouncerAuthSyntax',
'PL_FILES' => {}
)
;
4 changes: 2 additions & 2 deletions lib/App/GitHooks/Plugin/PgBouncerAuthSyntax.pm
Expand Up @@ -30,11 +30,11 @@ syntax.
=head1 VERSION
Version 1.0.3
Version 1.1.0
=cut

our $VERSION = '1.0.3';
our $VERSION = '1.1.0';


=head1 CONFIGURATION OPTIONS
Expand Down

0 comments on commit cee9941

Please sign in to comment.