Skip to content

Commit

Permalink
After release: bump $VERSION and timestamp Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Dec 17, 2020
1 parent 53c71d4 commit d1a09df
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ my %WriteMakefileArgs = (
"Time::HiRes" => 0,
"lib" => 0
},
"VERSION" => "0.016",
"VERSION" => "0.017",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat/Collection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat/Cursor.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat/DateTime.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat/Role/Document.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Meerkat/Types.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d1a09df

Please sign in to comment.