From: Karen Etheridge Date: Mon, 15 Jul 2013 18:42:05 +0000 (-0700) Subject: bump $VERSION to 0.35 X-Git-Tag: 0.35~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Storage.git;a=commitdiff_plain;h=efd4f7a5691295a10f74399e63731adb9a209057 bump $VERSION to 0.35 --- diff --git a/lib/MooseX/Storage.pm b/lib/MooseX/Storage.pm index f1c1ec4..f104e98 100644 --- a/lib/MooseX/Storage.pm +++ b/lib/MooseX/Storage.pm @@ -5,7 +5,7 @@ use Moose qw(confess); use MooseX::Storage::Meta::Attribute::DoNotSerialize; use String::RewritePrefix (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; sub import { diff --git a/lib/MooseX/Storage/Base/WithChecksum.pm b/lib/MooseX/Storage/Base/WithChecksum.pm index c02d460..4e999d4 100644 --- a/lib/MooseX/Storage/Base/WithChecksum.pm +++ b/lib/MooseX/Storage/Base/WithChecksum.pm @@ -6,7 +6,7 @@ with 'MooseX::Storage::Basic'; use Digest (); use Data::Dumper (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; our $DIGEST_MARKER = '__DIGEST__'; diff --git a/lib/MooseX/Storage/Basic.pm b/lib/MooseX/Storage/Basic.pm index 5d88736..26f158f 100644 --- a/lib/MooseX/Storage/Basic.pm +++ b/lib/MooseX/Storage/Basic.pm @@ -4,7 +4,7 @@ use Moose::Role; use MooseX::Storage::Engine; use String::RewritePrefix; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; sub pack { diff --git a/lib/MooseX/Storage/Deferred.pm b/lib/MooseX/Storage/Deferred.pm index 7546a31..81b18d9 100644 --- a/lib/MooseX/Storage/Deferred.pm +++ b/lib/MooseX/Storage/Deferred.pm @@ -1,7 +1,7 @@ package MooseX::Storage::Deferred; use Moose::Role; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::Storage::Basic'; diff --git a/lib/MooseX/Storage/Engine.pm b/lib/MooseX/Storage/Engine.pm index 3d3b39a..c924022 100644 --- a/lib/MooseX/Storage/Engine.pm +++ b/lib/MooseX/Storage/Engine.pm @@ -2,7 +2,7 @@ package MooseX::Storage::Engine; use Moose; use Scalar::Util qw(refaddr); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; # the class marker when diff --git a/lib/MooseX/Storage/Engine/IO/AtomicFile.pm b/lib/MooseX/Storage/Engine/IO/AtomicFile.pm index c0d370b..02386b9 100644 --- a/lib/MooseX/Storage/Engine/IO/AtomicFile.pm +++ b/lib/MooseX/Storage/Engine/IO/AtomicFile.pm @@ -4,7 +4,7 @@ use Moose; use utf8 (); use IO::AtomicFile; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; extends 'MooseX::Storage::Engine::IO::File'; diff --git a/lib/MooseX/Storage/Engine/IO/File.pm b/lib/MooseX/Storage/Engine/IO/File.pm index aae71a7..a16222f 100644 --- a/lib/MooseX/Storage/Engine/IO/File.pm +++ b/lib/MooseX/Storage/Engine/IO/File.pm @@ -4,7 +4,7 @@ use Moose; use utf8 (); use IO::File; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; has 'file' => ( diff --git a/lib/MooseX/Storage/Format/JSON.pm b/lib/MooseX/Storage/Format/JSON.pm index a5db2a4..8dbdc87 100644 --- a/lib/MooseX/Storage/Format/JSON.pm +++ b/lib/MooseX/Storage/Format/JSON.pm @@ -6,7 +6,7 @@ no warnings 'once'; use JSON::Any; use utf8 (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/Format/Storable.pm b/lib/MooseX/Storage/Format/Storable.pm index 3e5815e..d33fadb 100644 --- a/lib/MooseX/Storage/Format/Storable.pm +++ b/lib/MooseX/Storage/Format/Storable.pm @@ -3,7 +3,7 @@ use Moose::Role; use Storable (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/Format/YAML.pm b/lib/MooseX/Storage/Format/YAML.pm index 61f5152..5e36185 100644 --- a/lib/MooseX/Storage/Format/YAML.pm +++ b/lib/MooseX/Storage/Format/YAML.pm @@ -7,7 +7,7 @@ use Moose::Role; use YAML::Any qw(Load Dump); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/IO/AtomicFile.pm b/lib/MooseX/Storage/IO/AtomicFile.pm index 67d7430..f187727 100644 --- a/lib/MooseX/Storage/IO/AtomicFile.pm +++ b/lib/MooseX/Storage/IO/AtomicFile.pm @@ -3,7 +3,7 @@ use Moose::Role; use MooseX::Storage::Engine::IO::AtomicFile; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; with 'MooseX::Storage::IO::File'; diff --git a/lib/MooseX/Storage/IO/File.pm b/lib/MooseX/Storage/IO/File.pm index a6830e9..efb4103 100644 --- a/lib/MooseX/Storage/IO/File.pm +++ b/lib/MooseX/Storage/IO/File.pm @@ -3,7 +3,7 @@ use Moose::Role; use MooseX::Storage::Engine::IO::File; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'thaw'; diff --git a/lib/MooseX/Storage/IO/StorableFile.pm b/lib/MooseX/Storage/IO/StorableFile.pm index 5449d69..33dea84 100644 --- a/lib/MooseX/Storage/IO/StorableFile.pm +++ b/lib/MooseX/Storage/IO/StorableFile.pm @@ -3,7 +3,7 @@ use Moose::Role; use Storable (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm b/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm index 87ef7ed..fe28dcc 100644 --- a/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm +++ b/lib/MooseX/Storage/Meta/Attribute/DoNotSerialize.pm @@ -1,7 +1,7 @@ package MooseX::Storage::Meta::Attribute::DoNotSerialize; use Moose; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; extends 'Moose::Meta::Attribute'; @@ -10,7 +10,7 @@ extends 'Moose::Meta::Attribute'; # register this alias ... package Moose::Meta::Attribute::Custom::DoNotSerialize; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; sub register_implementation { 'MooseX::Storage::Meta::Attribute::DoNotSerialize' } diff --git a/lib/MooseX/Storage/Meta/Attribute/Trait/DoNotSerialize.pm b/lib/MooseX/Storage/Meta/Attribute/Trait/DoNotSerialize.pm index c9029c8..321f526 100644 --- a/lib/MooseX/Storage/Meta/Attribute/Trait/DoNotSerialize.pm +++ b/lib/MooseX/Storage/Meta/Attribute/Trait/DoNotSerialize.pm @@ -2,13 +2,13 @@ package MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize; use Moose::Role; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; # register this alias ... package Moose::Meta::Attribute::Custom::Trait::DoNotSerialize; -our $VERSION = '0.33'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; sub register_implementation { 'MooseX::Storage::Meta::Attribute::Trait::DoNotSerialize' } diff --git a/lib/MooseX/Storage/Traits/DisableCycleDetection.pm b/lib/MooseX/Storage/Traits/DisableCycleDetection.pm index 56c3069..75bba62 100644 --- a/lib/MooseX/Storage/Traits/DisableCycleDetection.pm +++ b/lib/MooseX/Storage/Traits/DisableCycleDetection.pm @@ -1,7 +1,7 @@ package MooseX::Storage::Traits::DisableCycleDetection; use Moose::Role; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/Traits/OnlyWhenBuilt.pm b/lib/MooseX/Storage/Traits/OnlyWhenBuilt.pm index 9af527d..49b5dbe 100644 --- a/lib/MooseX/Storage/Traits/OnlyWhenBuilt.pm +++ b/lib/MooseX/Storage/Traits/OnlyWhenBuilt.pm @@ -1,7 +1,7 @@ package MooseX::Storage::Traits::OnlyWhenBuilt; use Moose::Role; -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; requires 'pack'; diff --git a/lib/MooseX/Storage/Util.pm b/lib/MooseX/Storage/Util.pm index 7d8aba0..c890484 100644 --- a/lib/MooseX/Storage/Util.pm +++ b/lib/MooseX/Storage/Util.pm @@ -4,7 +4,7 @@ use Moose qw(confess blessed); use MooseX::Storage::Engine (); use utf8 (); -our $VERSION = '0.34'; +our $VERSION = '0.35'; our $AUTHORITY = 'cpan:STEVAN'; sub peek {