Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Commit Changes and bump $VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Apr 8, 2014
1 parent 7e0a54e commit 9db86e5
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 16 deletions.
2 changes: 2 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,8 @@ Change history for the MongoDB Perl driver:

{{ $NEXT }}

v0.703.4 2014-04-07 20:12:27-04:00 America/New_York (TRIAL RELEASE)

[Enhancements]

- PERL-298 implement parallel_scan method for collections
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB.pm
Expand Up @@ -22,7 +22,7 @@ package MongoDB;
# ABSTRACT: A MongoDB Driver for Perl

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use XSLoader;
use MongoDB::Connection;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BSON.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::BSON;
# ABSTRACT: Tools for serializing and deserializing data in BSON form

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BSON/Binary.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::BSON::Binary;
# ABSTRACT: Binary type

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/BSON/Regexp.pm
Expand Up @@ -2,7 +2,7 @@ package MongoDB::BSON::Regexp;
# ABSTRACT: Regular expression type

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Bulk.pm
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Bulk;
# ABSTRACT: MongoDB bulk write interface

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use boolean;
use Moose;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Code.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Code;
# ABSTRACT: JavaScript Code

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

=head1 NAME
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Collection.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Collection;
# ABSTRACT: A MongoDB Collection

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Tie::IxHash;
use Moose;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Connection.pm
Expand Up @@ -19,7 +19,7 @@ package MongoDB::Connection;
# ABSTRACT: A connection to a MongoDB server (DEPRECATED)

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Cursor.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Cursor;
# ABSTRACT: A cursor/iterator for Mongo query results

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use boolean;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/DBRef.pm
Expand Up @@ -19,7 +19,7 @@ package MongoDB::DBRef;
# ABSTRACT: Native DBRef support

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use Moose::Util::TypeConstraints;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Database.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Database;
# ABSTRACT: A MongoDB Database

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use MongoDB::GridFS;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/GridFS.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::GridFS;
# ABSTRACT: A file storage utility

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use MongoDB::GridFS::File;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/GridFS/File.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::GridFS::File;
# ABSTRACT: A Mongo GridFS file

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use MongoDB::GridFS;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/MongoClient.pm
Expand Up @@ -19,7 +19,7 @@ package MongoDB::MongoClient;
# ABSTRACT: A connection to a MongoDB server

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;
use Moose::Util::TypeConstraints;
Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/OID.pm
Expand Up @@ -19,7 +19,7 @@ package MongoDB::OID;
# ABSTRACT: A Mongo Object ID

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

use Moose;

Expand Down
2 changes: 1 addition & 1 deletion lib/MongoDB/Timestamp.pm
Expand Up @@ -20,7 +20,7 @@ package MongoDB::Timestamp;
# ABSTRACT: Replication timestamp

use version;
our $VERSION = 'v0.703.4'; # TRIAL
our $VERSION = 'v0.703.5'; # TRIAL

=head1 NAME
Expand Down

0 comments on commit 9db86e5

Please sign in to comment.