summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-08-11 22:17:49 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2015-08-11 22:17:49 -0700
commitc4c43d294a136605e480a038cb4ffc0b6f4af73f (patch)
treeb61b5ecb0b3bb02dfd501cf91c753ea58f80b0a8
parent905cc3f0e3b4c946ce6ea6556fbaf2b077d85f52 (diff)
downloadcarton-c4c43d294a136605e480a038cb4ffc0b6f4af73f.tar.gz
v1.0.22v1.0.22
-rw-r--r--Changes4
-rw-r--r--META.json2
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Carton.pm2
4 files changed, 7 insertions, 3 deletions
diff --git a/Changes b/Changes
index 700f304..df9b48c 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for carton
{{$NEXT}}
+v1.0.22 2015-08-11 22:17:44 PDT
+ - Fixed a bug where carton update gives an error when there's nothing to update
+ - Update a link to point to the new IRC chatroom #cpanm on irc.perl.org
+
v1.0.21 2015-05-15 12:21:47 PDT
- Changed Module::Reader dependency to requires for now, since it will be required
on the runtime by the fatpacked carton.
diff --git a/META.json b/META.json
index 34b1bf1..3b9e9e8 100644
--- a/META.json
+++ b/META.json
@@ -74,7 +74,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.21",
+ "version" : "v1.0.22",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index d2fc6a8..e5fe429 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.21",
+ "VERSION" => "v1.0.22",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 64c0250..6256e8a 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -1,7 +1,7 @@
package Carton;
use strict;
use 5.008_005;
-use version; our $VERSION = version->declare("v1.0.21");
+use version; our $VERSION = version->declare("v1.0.22");
1;
__END__