summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuhiko Miyagawa <miyagawa@bulknews.net>2011-10-18 14:11:44 +0900
committerTatsuhiko Miyagawa <miyagawa@bulknews.net>2011-10-18 14:11:44 +0900
commitaf44bc2c15426ae7442bfdf6ee382d20ffc3fcb8 (patch)
tree2281d756b9adf72304ce9cc48453fa12980d8849
parentee1ddcb824cd405b4728f590e20aaed9c561a77e (diff)
downloadcarton-af44bc2c15426ae7442bfdf6ee382d20ffc3fcb8.tar.gz
Checking in changes prior to tagging of version v0.9.2.v0.9.2
Changelog diff is: diff --git a/Changes b/Changes index 8dd9f6b..3b93b17 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for carton +v0.9.2 Tue Oct 18 12:53:57 JST 2011 + - Fixed packaging *again* by declaring version as a simple string + via http://www.dagolden.com/index.php/369/version-numbers-should-be-boring/ + v0.9.1 Mon Oct 17 19:05:12 JST 2011 - Fixed packaging - Fixed UTF8 encoding warnings for JSON
-rw-r--r--Changes4
-rw-r--r--lib/Carton.pm2
2 files changed, 5 insertions, 1 deletions
diff --git a/Changes b/Changes
index 8dd9f6b..3b93b17 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
Revision history for carton
+v0.9.2 Tue Oct 18 12:53:57 JST 2011
+ - Fixed packaging *again* by declaring version as a simple string
+ via http://www.dagolden.com/index.php/369/version-numbers-should-be-boring/
+
v0.9.1 Mon Oct 17 19:05:12 JST 2011
- Fixed packaging
- Fixed UTF8 encoding warnings for JSON
diff --git a/lib/Carton.pm b/lib/Carton.pm
index d663b9b..14beb46 100644
--- a/lib/Carton.pm
+++ b/lib/Carton.pm
@@ -3,7 +3,7 @@ package Carton;
use strict;
use warnings;
use 5.008_001;
-use version; our $VERSION = "v0.9.1";
+use version; our $VERSION = "v0.9.2";
use Cwd;
use Config qw(%Config);