Skip to content

Commit

Permalink
v0.9.12
Browse files Browse the repository at this point in the history
  • Loading branch information
miyagawa committed Mar 30, 2013
1 parent cb359aa commit cc4e711
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Expand Up @@ -18,7 +18,7 @@ my %module_build_args = (
"Tatsuhiko Miyagawa <miyagawa\@bulknews.net>"
],
"dist_name" => "carton",
"dist_version" => "v0.9.11",
"dist_version" => "v0.9.12",
"license" => "perl",
"module_name" => "carton",
"recommends" => {},
Expand Down
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,9 @@ Revision history for carton

{{$NEXT}}

v0.9.12 2013-03-30 15:01:55 PDT
- repackage to set $VERSION

v0.9.11 2013-03-30 14:54:21 PDT
- Ignore 'perl' requirements so as it won't fail, for now. #71
- Install 'test' dependencies by default. #66
Expand Down
2 changes: 1 addition & 1 deletion META.json
Expand Up @@ -65,6 +65,6 @@
"web" : "https://github.com/miyagawa/carton"
}
},
"version" : "v0.9.11"
"version" : "v0.9.12"
}

2 changes: 1 addition & 1 deletion lib/Carton.pm
Expand Up @@ -3,7 +3,7 @@ package Carton;
use strict;
use warnings;
use 5.008_001;
use version; our $VERSION = version->declare("v0.9.11");
use version; our $VERSION = version->declare("v0.9.12");

use Cwd;
use Config qw(%Config);
Expand Down
2 changes: 1 addition & 1 deletion lib/Carton/CLI.pm
@@ -1,7 +1,7 @@
package Carton::CLI;
use strict;
use warnings;
use version; our $VERSION = version->declare("v0.9.11");
use version; our $VERSION = version->declare("v0.9.12");

use Cwd;
use Config;
Expand Down
2 changes: 1 addition & 1 deletion lib/Carton/Error.pm
@@ -1,6 +1,6 @@
package Carton::Error;
use strict;
use version; our $VERSION = version->declare("v0.9.11");
use version; our $VERSION = version->declare("v0.9.12");
use Exception::Class (
'Carton::Error::CommandExit',
);
Expand Down
2 changes: 1 addition & 1 deletion lib/Carton/Tree.pm
@@ -1,7 +1,7 @@
package Carton::TreeNode;
use strict;
use warnings;
use version; our $VERSION = version->declare("v0.9.11");
use version; our $VERSION = version->declare("v0.9.12");

my %cache;

Expand Down
2 changes: 1 addition & 1 deletion lib/Carton/Util.pm
@@ -1,7 +1,7 @@
package Carton::Util;
use strict;
use warnings;
use version; our $VERSION = version->declare("v0.9.11");
use version; our $VERSION = version->declare("v0.9.12");

sub load_json {
my $file = shift;
Expand Down

0 comments on commit cc4e711

Please sign in to comment.