summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-05-04 11:23:29 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2018-05-04 11:23:29 -0700
commit586fbdc774eb90f3ab3800242f0334afa43c44db (patch)
tree382aa28018e933ca036e489471ba73f86bab6dbb
parent68d84dad3606ad201bb7216863bc25a12566f6f0 (diff)
downloadcarton-586fbdc774eb90f3ab3800242f0334afa43c44db.tar.gz
v1.0.33v1.0.33
-rw-r--r--Changes3
-rw-r--r--META.json2
-rw-r--r--Makefile.PL2
-rw-r--r--lib/Carton.pm2
4 files changed, 6 insertions, 3 deletions
diff --git a/Changes b/Changes
index 7650377..76e34f0 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for carton
{{$NEXT}}
+v1.0.33 2018-05-04 11:22:45 PDT
+ - bundle: support environment where IO::Compress::Gzip is not available
+
v1.0.32 2018-05-04 11:01:36 PDT
- Write out 02packages.details.txt.gz in carton bundle so that you can use
plain cpanm to install them
diff --git a/META.json b/META.json
index 610d8b8..542141e 100644
--- a/META.json
+++ b/META.json
@@ -72,7 +72,7 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.32",
+ "version" : "v1.0.33",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
diff --git a/Makefile.PL b/Makefile.PL
index 1e1524c..c4f2e9b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -33,7 +33,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.32",
+ "VERSION" => "v1.0.33",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 5f9c55a..e9abb90 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.32");
+use version; our $VERSION = version->declare("v1.0.33");
1;
__END__