Skip to content

Commit 75548de

Browse files
committed
Release 3.1.1
1 parent ea234b7 commit 75548de

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGES.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@ CHANGELOG
33

44
.. towncrier release notes start
55
6+
3.1.1 (2024-10-15)
7+
==================
8+
9+
Breaking changes
10+
----------------
11+
12+
- Drop support for Python 3.8 (Already reached EOL)
13+
14+
15+
Features
16+
--------
17+
18+
- Declare Support for Python 3.13
19+
20+
621
3.1.0 (2024-05-08)
722
==================
823

newsfragments/+5a2cb9ce.break.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/+78cdaf8b.feature.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pytest-rabbitmq"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
description = "RabbitMQ process and client fixtures for pytest"
55
readme = "README.rst"
66
keywords = ["tests", "pytest", "fixture", "rabbitmq", "messsage queue"]
@@ -39,7 +39,7 @@ requires-python = ">= 3.9"
3939
[project.urls]
4040
"Source" = "https://github.com/ClearcodeHQ/pytest-rabbitmq"
4141
"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/issues"
42-
"Changelog" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/blob/v3.1.0/CHANGES.rst"
42+
"Changelog" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/blob/v3.1.1/CHANGES.rst"
4343

4444
[project.entry-points."pytest11"]
4545
pytest_rabbitmq = "pytest_rabbitmq.plugin"
@@ -103,7 +103,7 @@ name = "Miscellaneus"
103103
showcontent = true
104104

105105
[tool.tbump.version]
106-
current = "3.1.0"
106+
current = "3.1.1"
107107

108108
# Example of a semver regexp.
109109
# Make sure this matches current_version before

pytest_rabbitmq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# You should have received a copy of the GNU Lesser General Public License
1818
# along with pytest-rabbitmq. If not, see <http://www.gnu.org/licenses/>.
1919
"""Main pytest-rabbitmq module."""
20-
__version__ = "3.1.0"
20+
__version__ = "3.1.1"

0 commit comments

Comments
 (0)