MOTOR-1184 Release 3.3.1 (#228)

This commit is contained in:
Steven Silvester 2023-08-31 15:36:56 -05:00 committed by GitHub
parent 62cf1742fc
commit 7ab5080b62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@ Changelog
.. currentmodule:: motor.motor_tornado
Motor 3.3.1
-----------
- Fix a bug in the type hint for :meth:`MotorCursor.to_list`.
Motor 3.3.0
-----------

View File

@ -14,7 +14,7 @@
"""Version-related data for motor."""
version_tuple = (3, 3, 0)
version_tuple = (3, 3, 1)
def get_version_string() -> str: