Skip to content

Commit

Permalink
BUMP 2.3.0 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantmital authored Sep 24, 2020
1 parent 6f7ced5 commit c3e51f8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Issues Resolved
See the `Motor 2.3 release notes in JIRA`_ for the complete list of resolved
issues in this release.

.. _Motor 2.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=11182&version=29749
.. _Motor 2.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=11182&version=29836

Motor 2.2
---------
Expand Down
8 changes: 8 additions & 0 deletions doc/requirements.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Motor and PyMongo
+-------------------+-----------------+
| 2.2 | 3.11+ |
+-------------------+-----------------+
| 2.3 | 3.11+ |
+-------------------+-----------------+

Motor and MongoDB
`````````````````
Expand All @@ -64,6 +66,8 @@ Motor and MongoDB
+---------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
| | 2.2 |**N**|**N**|**N**| Y | Y | Y | Y | Y | Y | Y |
+---------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+
| | 2.3 |**N**|**N**|**N**| Y | Y | Y | Y | Y | Y | Y |
+---------------+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+

There is no relationship between PyMongo and MongoDB version numbers, although
the numbers happen to be close or equal in recent releases of PyMongo and MongoDB.
Expand Down Expand Up @@ -98,6 +102,8 @@ known to be incompatible, or have not been tested together.
+---------------+-----+-----+-----+-----+-----+
| | 2.2 |**N**|**N**| Y | Y |
+---------------+-----+-----+-----+-----+-----+
| | 2.3 |**N**|**N**| Y | Y |
+---------------+-----+-----+-----+-----+-----+

Motor and Python
````````````````
Expand Down Expand Up @@ -129,6 +135,8 @@ than 3.5.2.
+---------------+-----+-----+-----+-----+-----+-----+-------+-------+-----+-----+-----+
| | 2.2 |**N**|**N**|**N**|**N**|**N**|**N** | Y | Y | Y | Y |
+---------------+-----+-----+-----+-----+-----+-----+-------+-------+-----+-----+-----+
| | 2.3 |**N**|**N**|**N**|**N**|**N**|**N** | Y | Y | Y | Y |
+---------------+-----+-----+-----+-----+-----+-----+-------+-------+-----+-----+-----+

Not Supported
-------------
Expand Down
2 changes: 1 addition & 1 deletion motor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

"""Motor, an asynchronous driver for MongoDB."""

version_tuple = (2, 3, 0, 'dev0')
version_tuple = (2, 3, 0)


def get_version_string():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def run(self):


setup(name='motor',
version='2.3.0.dev0',
version='2.3.0',
packages=packages,
description=description,
long_description=long_description,
Expand Down

0 comments on commit c3e51f8

Please sign in to comment.