From: Dave Rolsky Date: Mon, 1 Sep 2008 16:51:09 +0000 (+0000) Subject: bump version and deps for 0.07 X-Git-Tag: 0.07^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-StrictConstructor.git;a=commitdiff_plain;h=0a0390cc1aa08bb9a5f2727fe203d0a3cfdc5757 bump version and deps for 0.07 --- diff --git a/Build.PL b/Build.PL index 8f72cd7..863850c 100644 --- a/Build.PL +++ b/Build.PL @@ -1,14 +1,14 @@ use strict; use warnings; -require 5.00601; +require 5.008; use Module::Build; my $builder = Module::Build->new ( module_name => 'MooseX::StrictConstructor', license => 'perl', - requires => { 'Moose' => '0.55_04', + requires => { 'Moose' => '0.56', 'Test::More' => '0', }, create_makefile_pl => 'passthrough', diff --git a/Changes b/Changes index 22a371d..1bba694 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +0.07 2008-09-01 + +- No code changes, just a stable release for Moose 0.56. + + 0.06_02 2008-08-30 * This module no longer exports Moose's sugar. Just use Moose instead. diff --git a/lib/MooseX/StrictConstructor.pm b/lib/MooseX/StrictConstructor.pm index 7faa178..1f58bb1 100644 --- a/lib/MooseX/StrictConstructor.pm +++ b/lib/MooseX/StrictConstructor.pm @@ -3,11 +3,11 @@ package MooseX::StrictConstructor; use strict; use warnings; -our $VERSION = '0.06_02'; +our $VERSION = '0.07'; $VERSION = eval $VERSION; use Class::MOP (); -use Moose 0.5504 (); +use Moose 0.56 (); use Moose::Exporter; use Moose::Util::MetaRole; use MooseX::StrictConstructor::Role::Object;