Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 15, 2024
1 parent ea234b7 commit 75548de
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ CHANGELOG

.. towncrier release notes start
3.1.1 (2024-10-15)
==================

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

- Drop support for Python 3.8 (Already reached EOL)


Features
--------

- Declare Support for Python 3.13


3.1.0 (2024-05-08)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/+5a2cb9ce.break.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+78cdaf8b.feature.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-rabbitmq"
version = "3.1.0"
version = "3.1.1"
description = "RabbitMQ process and client fixtures for pytest"
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "rabbitmq", "messsage queue"]
Expand Down Expand Up @@ -39,7 +39,7 @@ requires-python = ">= 3.9"
[project.urls]
"Source" = "https://github.com/ClearcodeHQ/pytest-rabbitmq"
"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/issues"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/blob/v3.1.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/blob/v3.1.1/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_rabbitmq = "pytest_rabbitmq.plugin"
Expand Down Expand Up @@ -103,7 +103,7 @@ name = "Miscellaneus"
showcontent = true

[tool.tbump.version]
current = "3.1.0"
current = "3.1.1"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pytest_rabbitmq/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with pytest-rabbitmq. If not, see <http://www.gnu.org/licenses/>.
"""Main pytest-rabbitmq module."""
__version__ = "3.1.0"
__version__ = "3.1.1"

0 comments on commit 75548de

Please sign in to comment.