diff --git a/CHANGES.rst b/CHANGES.rst index dac2eae..a56cd7e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,28 @@ CHANGELOG .. towncrier release notes start +3.0.0 (2023-07-20) +================== + +Breaking changes +---------------- + +- Dropped support for python 3.7 (`#384 `__) + + +Features +-------- + +- Add typing and check types on CI (`#384 `__) +- Officially support python 3.11 (`#385 `__) + + +Miscellaneus +------------ + +- `#379 `__, `#380 `__, `#381 `__, `#382 `__, `#383 `__, `#386 `__, `#394 `__, `#419 `__ + + 2.1.1 ===== diff --git a/newsfragments/379.misc.rst b/newsfragments/379.misc.rst deleted file mode 100644 index 3e863ec..0000000 --- a/newsfragments/379.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Use towncrier to manage Changelogs \ No newline at end of file diff --git a/newsfragments/380.misc.rst b/newsfragments/380.misc.rst deleted file mode 100644 index 2484dc8..0000000 --- a/newsfragments/380.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Migrate development dependency management to pipenv \ No newline at end of file diff --git a/newsfragments/381.misc.rst b/newsfragments/381.misc.rst deleted file mode 100644 index bc0aba9..0000000 --- a/newsfragments/381.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Migrate to the automerge flow using Github App to generate tokens. \ No newline at end of file diff --git a/newsfragments/382.misc.rst b/newsfragments/382.misc.rst deleted file mode 100644 index ab02f42..0000000 --- a/newsfragments/382.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Replace pydocstyle and pycodestyle with ruff \ No newline at end of file diff --git a/newsfragments/383.misc.rst b/newsfragments/383.misc.rst deleted file mode 100644 index 175564b..0000000 --- a/newsfragments/383.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Drop setup.cfg in favour of pyproject.toml \ No newline at end of file diff --git a/newsfragments/384.break.rst b/newsfragments/384.break.rst deleted file mode 100644 index 3d2732e..0000000 --- a/newsfragments/384.break.rst +++ /dev/null @@ -1 +0,0 @@ -Dropped support for python 3.7 \ No newline at end of file diff --git a/newsfragments/384.feature.rst b/newsfragments/384.feature.rst deleted file mode 100644 index 2ef98d0..0000000 --- a/newsfragments/384.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add typing and check types on CI \ No newline at end of file diff --git a/newsfragments/385.feature.rst b/newsfragments/385.feature.rst deleted file mode 100644 index 657d588..0000000 --- a/newsfragments/385.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Officially support python 3.11 \ No newline at end of file diff --git a/newsfragments/386.misc.rst b/newsfragments/386.misc.rst deleted file mode 100644 index c3c51bd..0000000 --- a/newsfragments/386.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Replace bumpversion with tbump to manage versioning and releases \ No newline at end of file diff --git a/newsfragments/394.misc.rst b/newsfragments/394.misc.rst deleted file mode 100644 index b495ec3..0000000 --- a/newsfragments/394.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Change the way mongo is set up on CI \ No newline at end of file diff --git a/newsfragments/419.misc.rst b/newsfragments/419.misc.rst deleted file mode 100644 index bdb77bb..0000000 --- a/newsfragments/419.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Lint RST fields with rstcheck. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 9c2fd56..b7cb58d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytest-mongo" -version = "2.1.1" +version = "3.0.0" description = "MongoDB process and client fixtures plugin for Pytest." readme = "README.rst" keywords = ["tests", "pytest", "fixture", "mongodb", "mongo"] @@ -37,7 +37,7 @@ requires-python = ">= 3.8" [project.urls] "Source" = "https://github.com/ClearcodeHQ/pytest-mongo" "Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-mongo/issues" -"Changelog" = "https://github.com/ClearcodeHQ/pytest-mongo/blob/v2.1.1/CHANGES.rst" +"Changelog" = "https://github.com/ClearcodeHQ/pytest-mongo/blob/v3.0.0/CHANGES.rst" [project.entry-points."pytest11"] pytest_mongo = "pytest_mongo.plugin" @@ -100,7 +100,7 @@ name = "Miscellaneus" showcontent = false [tool.tbump.version] -current = "2.1.1" +current = "3.0.0" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/pytest_mongo/__init__.py b/pytest_mongo/__init__.py index 45c467c..63dc13c 100644 --- a/pytest_mongo/__init__.py +++ b/pytest_mongo/__init__.py @@ -18,4 +18,4 @@ # along with pytest-mongo. If not, see . """pytest-mongo's main module.""" -__version__ = "2.1.1" +__version__ = "3.0.0"