Skip to content

Commit

Permalink
BUMP 2.5.1 (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey authored Feb 27, 2017
1 parent c400d70 commit de1115e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
Changelog
=========

Version 2.5.1
-------------

Version 2.5.1 improves testing, documentation, and fixes the following bugs:

- Only use listDatabases when necessary.
- Do not use the listShards command.
- Fix PyMongo 3.0 compatibility.
- Fixes support for MongoDB 2.4's invalid $unsets operations.
- Set array element to null when $unset, do not remove the element completely.
- Command line SSL options should override the config file.
- Properly send "ssl.sslCertificatePolicy" to MongoClients.
- Properly output log messages while configuration is parsed.
- All source clients should inherit MongoDB URI options from the main address.
- Do not retry operations that result in authorization failure.

Version 2.5.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion mongo_connector/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


__version__ = '2.5.1.dev0'
__version__ = '2.5.1'

# Maximum # of documents to process before recording timestamp
# default = -1 (no maximum)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def run(self):
}

setup(name='mongo-connector',
version="2.5.1.dev0",
version="2.5.1",
author="MongoDB, Inc.",
author_email='mongodb-user@googlegroups.com',
description='Mongo Connector',
Expand Down

0 comments on commit de1115e

Please sign in to comment.