diff --git a/Changes b/Changes index 97ff6b3..a2f0afd 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for Meerkat {{$NEXT}} +0.014 2016-02-27 08:20:44-05:00 America/New_York + [ADDED] - Adds support for 'immortal' to cursors diff --git a/Makefile.PL b/Makefile.PL index 748b2d1..df53157 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -56,7 +56,7 @@ my %WriteMakefileArgs = ( "Time::HiRes" => 0, "lib" => 0 }, - "VERSION" => "0.014", + "VERSION" => "0.015", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/Meerkat.pm b/lib/Meerkat.pm index 26013b1..db0ae40 100644 --- a/lib/Meerkat.pm +++ b/lib/Meerkat.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat; # ABSTRACT: Manage MongoDB documents as Moose objects -our $VERSION = '0.013'; +our $VERSION = '0.015'; # Dependencies use Moose 2; diff --git a/lib/Meerkat/Collection.pm b/lib/Meerkat/Collection.pm index f494f26..5550fe8 100644 --- a/lib/Meerkat/Collection.pm +++ b/lib/Meerkat/Collection.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat::Collection; # ABSTRACT: Associate a class, database and MongoDB collection -our $VERSION = '0.013'; +our $VERSION = '0.015'; use Moose 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Cursor.pm b/lib/Meerkat/Cursor.pm index 7fd982f..0e9815a 100644 --- a/lib/Meerkat/Cursor.pm +++ b/lib/Meerkat/Cursor.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat::Cursor; # ABSTRACT: Wrap MongoDB::Cursor to inflate data to objects -our $VERSION = '0.013'; +our $VERSION = '0.015'; # Dependencies use Moose 2; diff --git a/lib/Meerkat/DateTime.pm b/lib/Meerkat/DateTime.pm index e8494ac..c84fb5e 100644 --- a/lib/Meerkat/DateTime.pm +++ b/lib/Meerkat/DateTime.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat::DateTime; # ABSTRACT: DateTime proxy for lazy inflation from an epoch value -our $VERSION = '0.013'; +our $VERSION = '0.015'; use Moose 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Role/Document.pm b/lib/Meerkat/Role/Document.pm index 034bfcd..2291e96 100644 --- a/lib/Meerkat/Role/Document.pm +++ b/lib/Meerkat/Role/Document.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat::Role::Document; # ABSTRACT: Enhances a Moose object with Meerkat methods and metadata -our $VERSION = '0.013'; +our $VERSION = '0.015'; use Moose::Role 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Types.pm b/lib/Meerkat/Types.pm index fca7f12..a137dfe 100644 --- a/lib/Meerkat/Types.pm +++ b/lib/Meerkat/Types.pm @@ -5,7 +5,7 @@ use warnings; package Meerkat::Types; # ABSTRACT: Moose types for Meerkat -our $VERSION = '0.013'; +our $VERSION = '0.015'; use MooseX::Types -declare => [qw(MeerkatDateTime)]; use MooseX::Storage::Engine;