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 Feb 27, 2016
1 parent 3d8d27d commit c8e8e71
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.014 2016-02-27 08:20:44-05:00 America/New_York

[ADDED]

- Adds support for 'immortal' to cursors
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.014",
"VERSION" => "0.015",
"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.013';
our $VERSION = '0.015';

# 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.013';
our $VERSION = '0.015';

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.013';
our $VERSION = '0.015';

# 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.013';
our $VERSION = '0.015';

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.013';
our $VERSION = '0.015';

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.013';
our $VERSION = '0.015';

use MooseX::Types -declare => [qw(MeerkatDateTime)];
use MooseX::Storage::Engine;
Expand Down

0 comments on commit c8e8e71

Please sign in to comment.