[dh-make-perl] 01/08: bump version to 0.91 after the 0.90 release

gregor herrmann gregoa at debian.org
Wed Apr 6 16:05:51 UTC 2016


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository dh-make-perl.

commit 3ebbc39e94bc8317fc3fd60aa4f13204cf3effe2
Author: gregor herrmann <gregoa at debian.org>
Date:   Wed Apr 6 17:37:09 2016 +0200

    bump version to 0.91 after the 0.90 release
    
    Gbp-Dch: Ignore
---
 Changes                                     | 4 ++++
 debian/changelog                            | 6 ++++++
 lib/Debian/AptContents.pm                   | 2 +-
 lib/Debian/Control.pm                       | 2 +-
 lib/Debian/Control/FromCPAN.pm              | 2 +-
 lib/Debian/Control/Stanza.pm                | 2 +-
 lib/Debian/Control/Stanza/Binary.pm         | 2 +-
 lib/Debian/Control/Stanza/CommaSeparated.pm | 2 +-
 lib/Debian/Control/Stanza/Source.pm         | 2 +-
 lib/Debian/Dependencies.pm                  | 2 +-
 lib/Debian/Dependency.pm                    | 2 +-
 lib/Debian/DpkgLists.pm                     | 2 +-
 lib/Debian/Rules.pm                         | 2 +-
 lib/Debian/WNPP/Bug.pm                      | 2 +-
 lib/Debian/WNPP/Query.pm                    | 2 +-
 lib/DhMakePerl.pm                           | 2 +-
 lib/DhMakePerl/Command/Packaging.pm         | 2 +-
 lib/DhMakePerl/Command/dump_config.pm       | 2 +-
 lib/DhMakePerl/Command/help.pm              | 2 +-
 lib/DhMakePerl/Command/locate.pm            | 2 +-
 lib/DhMakePerl/Command/make.pm              | 2 +-
 lib/DhMakePerl/Command/refresh.pm           | 2 +-
 lib/DhMakePerl/Command/refresh_cache.pm     | 2 +-
 lib/DhMakePerl/Config.pm                    | 2 +-
 lib/DhMakePerl/PodParser.pm                 | 2 +-
 lib/DhMakePerl/Utils.pm                     | 2 +-
 26 files changed, 34 insertions(+), 24 deletions(-)

diff --git a/Changes b/Changes
index 0f91667..516cac0 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,7 @@
+0.91 (2016-xx-xx)
+
+  * -
+
 0.90 (2016-04-06)
 
   [ gregor herrmann ]
diff --git a/debian/changelog b/debian/changelog
index 016df2b..c519292 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dh-make-perl (0.91-1) UNRELEASED; urgency=medium
+
+  * <dummy entry>
+
+ -- gregor herrmann <gregoa at debian.org>  Wed, 06 Apr 2016 17:35:59 +0200
+
 dh-make-perl (0.90-1) unstable; urgency=medium
 
   [ gregor herrmann ]
diff --git a/lib/Debian/AptContents.pm b/lib/Debian/AptContents.pm
index 4de7e6d..c59f5c0 100644
--- a/lib/Debian/AptContents.pm
+++ b/lib/Debian/AptContents.pm
@@ -3,7 +3,7 @@ package Debian::AptContents;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 
diff --git a/lib/Debian/Control.pm b/lib/Debian/Control.pm
index a4f7e32..c9e1eb8 100644
--- a/lib/Debian/Control.pm
+++ b/lib/Debian/Control.pm
@@ -52,7 +52,7 @@ use base 'Class::Accessor';
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 __PACKAGE__->mk_accessors(qw( source binary binary_tie _parser ));
 
diff --git a/lib/Debian/Control/FromCPAN.pm b/lib/Debian/Control/FromCPAN.pm
index 2a732ee..3a457a2 100644
--- a/lib/Debian/Control/FromCPAN.pm
+++ b/lib/Debian/Control/FromCPAN.pm
@@ -16,7 +16,7 @@ package Debian::Control::FromCPAN;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use Carp qw(croak);
 
diff --git a/lib/Debian/Control/Stanza.pm b/lib/Debian/Control/Stanza.pm
index bfb8445..1dac5e9 100644
--- a/lib/Debian/Control/Stanza.pm
+++ b/lib/Debian/Control/Stanza.pm
@@ -25,7 +25,7 @@ require v5.10.0;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base qw( Class::Accessor Tie::IxHash );
 
diff --git a/lib/Debian/Control/Stanza/Binary.pm b/lib/Debian/Control/Stanza/Binary.pm
index c28b100..f2f0f6d 100644
--- a/lib/Debian/Control/Stanza/Binary.pm
+++ b/lib/Debian/Control/Stanza/Binary.pm
@@ -87,7 +87,7 @@ package Debian::Control::Stanza::Binary;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'Debian::Control::Stanza';
 
diff --git a/lib/Debian/Control/Stanza/CommaSeparated.pm b/lib/Debian/Control/Stanza/CommaSeparated.pm
index 26ac1ca..b0af9c5 100644
--- a/lib/Debian/Control/Stanza/CommaSeparated.pm
+++ b/lib/Debian/Control/Stanza/CommaSeparated.pm
@@ -9,7 +9,7 @@ Debian::Control::Stanza::CommaSeparated - comma separated debian/control field a
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use Array::Unique;
 use Text::ParseWords qw(quotewords);
diff --git a/lib/Debian/Control/Stanza/Source.pm b/lib/Debian/Control/Stanza/Source.pm
index f507a27..c861aa6 100644
--- a/lib/Debian/Control/Stanza/Source.pm
+++ b/lib/Debian/Control/Stanza/Source.pm
@@ -77,7 +77,7 @@ package Debian::Control::Stanza::Source;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base qw(Debian::Control::Stanza);
 
diff --git a/lib/Debian/Dependencies.pm b/lib/Debian/Dependencies.pm
index 43a90e3..0741d91 100644
--- a/lib/Debian/Dependencies.pm
+++ b/lib/Debian/Dependencies.pm
@@ -3,7 +3,7 @@ package Debian::Dependencies;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use AptPkg::Config;
 use Debian::Dependency;
diff --git a/lib/Debian/Dependency.pm b/lib/Debian/Dependency.pm
index f02448f..5a03284 100644
--- a/lib/Debian/Dependency.pm
+++ b/lib/Debian/Dependency.pm
@@ -3,7 +3,7 @@ package Debian::Dependency;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use AptPkg::Config;
 use Carp;
diff --git a/lib/Debian/DpkgLists.pm b/lib/Debian/DpkgLists.pm
index 0dbbc64..b0d28ca 100644
--- a/lib/Debian/DpkgLists.pm
+++ b/lib/Debian/DpkgLists.pm
@@ -3,7 +3,7 @@ package Debian::DpkgLists;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use Cwd;
 
diff --git a/lib/Debian/Rules.pm b/lib/Debian/Rules.pm
index f9a0723..745cabd 100644
--- a/lib/Debian/Rules.pm
+++ b/lib/Debian/Rules.pm
@@ -3,7 +3,7 @@ package Debian::Rules;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 
diff --git a/lib/Debian/WNPP/Bug.pm b/lib/Debian/WNPP/Bug.pm
index f5482af..b0017d4 100644
--- a/lib/Debian/WNPP/Bug.pm
+++ b/lib/Debian/WNPP/Bug.pm
@@ -3,7 +3,7 @@ package Debian::WNPP::Bug;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 
diff --git a/lib/Debian/WNPP/Query.pm b/lib/Debian/WNPP/Query.pm
index 70bdb9c..91081e5 100644
--- a/lib/Debian/WNPP/Query.pm
+++ b/lib/Debian/WNPP/Query.pm
@@ -2,7 +2,7 @@ package Debian::WNPP::Query;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 
diff --git a/lib/DhMakePerl.pm b/lib/DhMakePerl.pm
index bf388f8..d178fde 100644
--- a/lib/DhMakePerl.pm
+++ b/lib/DhMakePerl.pm
@@ -18,7 +18,7 @@ Version 0.90
 
 =cut
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 SYNOPSIS
 
diff --git a/lib/DhMakePerl/Command/Packaging.pm b/lib/DhMakePerl/Command/Packaging.pm
index c1da01a..f8b6f90 100644
--- a/lib/DhMakePerl/Command/Packaging.pm
+++ b/lib/DhMakePerl/Command/Packaging.pm
@@ -3,7 +3,7 @@ package DhMakePerl::Command::Packaging;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use feature 'switch';
 
diff --git a/lib/DhMakePerl/Command/dump_config.pm b/lib/DhMakePerl/Command/dump_config.pm
index e05d535..caf4498 100644
--- a/lib/DhMakePerl/Command/dump_config.pm
+++ b/lib/DhMakePerl/Command/dump_config.pm
@@ -8,7 +8,7 @@ DhMakePerl::Command::dump_config - dh-make-perl dump-config implementation
 
 use strict; use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'DhMakePerl';
 
diff --git a/lib/DhMakePerl/Command/help.pm b/lib/DhMakePerl/Command/help.pm
index ed6fe00..b0a66e3 100644
--- a/lib/DhMakePerl/Command/help.pm
+++ b/lib/DhMakePerl/Command/help.pm
@@ -12,7 +12,7 @@ This module implements the I<help> command of L<dh-make-perl(1)>.
 
 use strict; use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'DhMakePerl';
 use Pod::Usage;
diff --git a/lib/DhMakePerl/Command/locate.pm b/lib/DhMakePerl/Command/locate.pm
index c85fee8..621e089 100644
--- a/lib/DhMakePerl/Command/locate.pm
+++ b/lib/DhMakePerl/Command/locate.pm
@@ -12,7 +12,7 @@ This module implements the I<locate> command of L<dh-make-perl(1)>.
 
 use strict; use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'DhMakePerl';
 
diff --git a/lib/DhMakePerl/Command/make.pm b/lib/DhMakePerl/Command/make.pm
index 30bf66b..c40fc99 100644
--- a/lib/DhMakePerl/Command/make.pm
+++ b/lib/DhMakePerl/Command/make.pm
@@ -2,7 +2,7 @@ package DhMakePerl::Command::make;
 
 use warnings;
 use strict;
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 use 5.010;    # we use smart matching
 
 use base 'DhMakePerl::Command::Packaging';
diff --git a/lib/DhMakePerl/Command/refresh.pm b/lib/DhMakePerl/Command/refresh.pm
index 4a856ba..4e62a2d 100644
--- a/lib/DhMakePerl/Command/refresh.pm
+++ b/lib/DhMakePerl/Command/refresh.pm
@@ -12,7 +12,7 @@ This module implements the I<refresh> command of L<dh-make-perl(1)>.
 
 use strict; use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'DhMakePerl::Command::Packaging';
 use Debian::Control::FromCPAN;
diff --git a/lib/DhMakePerl/Command/refresh_cache.pm b/lib/DhMakePerl/Command/refresh_cache.pm
index 5095c10..a7b3d33 100644
--- a/lib/DhMakePerl/Command/refresh_cache.pm
+++ b/lib/DhMakePerl/Command/refresh_cache.pm
@@ -12,7 +12,7 @@ This module implements the I<refresh-cache> command of L<dh-make-perl(1)>.
 
 use strict; use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base 'DhMakePerl';
 
diff --git a/lib/DhMakePerl/Config.pm b/lib/DhMakePerl/Config.pm
index b80eb55..fd21338 100644
--- a/lib/DhMakePerl/Config.pm
+++ b/lib/DhMakePerl/Config.pm
@@ -3,7 +3,7 @@ package DhMakePerl::Config;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 
diff --git a/lib/DhMakePerl/PodParser.pm b/lib/DhMakePerl/PodParser.pm
index 80a6e4c..2b24dad 100644
--- a/lib/DhMakePerl/PodParser.pm
+++ b/lib/DhMakePerl/PodParser.pm
@@ -3,7 +3,7 @@ package DhMakePerl::PodParser;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 use base qw(Pod::Parser);
 
diff --git a/lib/DhMakePerl/Utils.pm b/lib/DhMakePerl/Utils.pm
index a9ba78d..144b615 100644
--- a/lib/DhMakePerl/Utils.pm
+++ b/lib/DhMakePerl/Utils.pm
@@ -3,7 +3,7 @@ package DhMakePerl::Utils;
 use strict;
 use warnings;
 
-our $VERSION = '0.90';
+our $VERSION = '0.91';
 
 =head1 NAME
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/dh-make-perl.git



More information about the Pkg-perl-cvs-commits mailing list