diff --git a/Changes b/Changes index 57bad1e..46aa29f 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for Meerkat {{$NEXT}} +0.016 2020-12-16 22:08:18-05:00 America/New_York + [INCOMPATIBLE CHANGES] - Requires MongoDB 2.0+. Uses BSON type wrappers instead of legacy diff --git a/Makefile.PL b/Makefile.PL index 6d8a2d0..0df88d7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -56,7 +56,7 @@ my %WriteMakefileArgs = ( "Time::HiRes" => 0, "lib" => 0 }, - "VERSION" => "0.016", + "VERSION" => "0.017", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/Meerkat.pm b/lib/Meerkat.pm index a71d9bd..dc9b79b 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.016'; +our $VERSION = '0.017'; # Dependencies use Moose 2; diff --git a/lib/Meerkat/Collection.pm b/lib/Meerkat/Collection.pm index 271a738..ee106a8 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.016'; +our $VERSION = '0.017'; use Moose 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Cursor.pm b/lib/Meerkat/Cursor.pm index f31f5ca..8e4a358 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.016'; +our $VERSION = '0.017'; # Dependencies use Moose 2; diff --git a/lib/Meerkat/DateTime.pm b/lib/Meerkat/DateTime.pm index 41961a8..c91c8e5 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.016'; +our $VERSION = '0.017'; use Moose 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Role/Document.pm b/lib/Meerkat/Role/Document.pm index 7f2471f..531e5cc 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.016'; +our $VERSION = '0.017'; use Moose::Role 2; use MooseX::AttributeShortcuts; diff --git a/lib/Meerkat/Types.pm b/lib/Meerkat/Types.pm index 1d18e11..656832c 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.016'; +our $VERSION = '0.017'; use MooseX::Types -declare => [qw(MeerkatDateTime)]; use MooseX::Storage::Engine;