summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-08 11:56:23 -0700
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2016-05-08 11:56:23 -0700
commit83f277f6f2f315f5a9f2c4bb7503bf78fffc2d5b (patch)
tree5be6da28291d60896eba28112e49ed3bb03876b4
parent9f16a9783072255b09d951afea09f8504f541320 (diff)
downloadcarton-83f277f6f2f315f5a9f2c4bb7503bf78fffc2d5b.tar.gz
v1.0.24v1.0.24
-rw-r--r--Changes8
-rw-r--r--META.json15
-rw-r--r--Makefile.PL4
-rw-r--r--README.md2
-rw-r--r--lib/Carton.pm2
5 files changed, 20 insertions, 11 deletions
diff --git a/Changes b/Changes
index df9b48c..c66a404 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,14 @@ Revision history for carton
{{$NEXT}}
+v1.0.24 2016-05-08 11:56:14 PDT
+ - Same as v1.0.23, repackaging
+
+v1.0.23 2016-05-08 11:50:00 PDT
+ - Update FAQ to use with perlbrew #202
+ - Update github URL
+ - Fix regular expression warnings in perl 5.22 #204
+
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
diff --git a/META.json b/META.json
index 3b9e9e8..46c7056 100644
--- a/META.json
+++ b/META.json
@@ -4,7 +4,7 @@
"Tatsuhiko Miyagawa"
],
"dynamic_config" : 0,
- "generated_by" : "Dist::Zilla version 5.039, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.150005",
+ "generated_by" : "Dist::Zilla version 5.047, Dist::Milla version v1.0.15, CPAN::Meta::Converter version 2.150005",
"license" : [
"perl_5"
],
@@ -15,12 +15,12 @@
"name" : "Carton",
"no_index" : {
"directory" : [
- "t",
- "xt",
+ "eg",
+ "examples",
"inc",
"share",
- "eg",
- "examples"
+ "t",
+ "xt"
]
},
"prereqs" : {
@@ -74,22 +74,23 @@
"web" : "https://github.com/perl-carton/carton"
}
},
- "version" : "v1.0.22",
+ "version" : "v1.0.24",
"x_contributors" : [
"Christian Walde <walde.christian@googlemail.com>",
"David Golden <dagolden@cpan.org>",
"David Steinbrunner <dsteinbrunner@pobox.com>",
- "ikasam_a <masaki.nakagawa@gmail.com>",
"Jonathan Steinert <hachi@fastly.com>",
"Kan Fushihara <kan.fushihara@gmail.com>",
"Masahiro Chiba <chiba@everqueue.com>",
"NAKAGAWA Masaki <masaki.nakagawa@gmail.com>",
"Olaf Alders <olaf@wundersolutions.com>",
"Pedro Figueiredo <me@pedrofigueiredo.org>",
+ "Pedro Melo <melo@simplicidade.org>",
"Peter Oliver <git@mavit.org.uk>",
"shiba_yu36 <shibayu36@gmail.com>",
"Tatsuhiko Miyagawa <miyagawa@bulknews.net>",
"Tatsuhiko Miyagawa <miyagawa@gmail.com>",
+ "WATANABE Hiroaki <hwat@mac.com>",
"Yanick Champoux <yanick@babyl.dyndns.org>"
]
}
diff --git a/Makefile.PL b/Makefile.PL
index e5fe429..3e434e3 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,4 +1,4 @@
-# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.039.
+# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.047.
use strict;
use warnings;
@@ -35,7 +35,7 @@ my %WriteMakefileArgs = (
"Try::Tiny" => "0.09",
"parent" => "0.223"
},
- "VERSION" => "v1.0.22",
+ "VERSION" => "v1.0.24",
"test" => {
"TESTS" => "t/*.t"
}
diff --git a/README.md b/README.md
index 61add40..b48220e 100644
--- a/README.md
+++ b/README.md
@@ -128,7 +128,7 @@ with perl lower than the specified version.
# COMMUNITY
-- [https://github.com/miyagawa/carton](https://github.com/miyagawa/carton)
+- [https://github.com/perl-carton/carton](https://github.com/perl-carton/carton)
Code repository, Wiki and Issue Tracker
diff --git a/lib/Carton.pm b/lib/Carton.pm
index 4481ab2..45703d4 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.22");
+use version; our $VERSION = version->declare("v1.0.24");
1;
__END__