Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jul 20, 2023
1 parent 097293b commit 892d126
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 15 deletions.
22 changes: 22 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@ CHANGELOG

.. towncrier release notes start
3.0.0 (2023-07-20)
==================

Breaking changes
----------------

- Dropped support for python 3.7 (`#384 <https://github.com/ClearcodeHQ/pytest-mongo/issues/384>`__)


Features
--------

- Add typing and check types on CI (`#384 <https://github.com/ClearcodeHQ/pytest-mongo/issues/384>`__)
- Officially support python 3.11 (`#385 <https://github.com/ClearcodeHQ/pytest-mongo/issues/385>`__)


Miscellaneus
------------

- `#379 <https://github.com/ClearcodeHQ/pytest-mongo/issues/379>`__, `#380 <https://github.com/ClearcodeHQ/pytest-mongo/issues/380>`__, `#381 <https://github.com/ClearcodeHQ/pytest-mongo/issues/381>`__, `#382 <https://github.com/ClearcodeHQ/pytest-mongo/issues/382>`__, `#383 <https://github.com/ClearcodeHQ/pytest-mongo/issues/383>`__, `#386 <https://github.com/ClearcodeHQ/pytest-mongo/issues/386>`__, `#394 <https://github.com/ClearcodeHQ/pytest-mongo/issues/394>`__, `#419 <https://github.com/ClearcodeHQ/pytest-mongo/issues/419>`__


2.1.1
=====

Expand Down
1 change: 0 additions & 1 deletion newsfragments/379.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/380.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/381.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/382.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/383.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/384.break.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/384.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/385.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/386.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/394.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/419.misc.rst

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pytest_mongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# along with pytest-mongo. If not, see <http://www.gnu.org/licenses/>.
"""pytest-mongo's main module."""

__version__ = "2.1.1"
__version__ = "3.0.0"

0 comments on commit 892d126

Please sign in to comment.