Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jun 16, 2023
1 parent b4a6f4a commit 6cdff29
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Expand Up @@ -3,6 +3,15 @@ CHANGELOG

.. towncrier release notes start
3.0.1 (2023-06-16)
==================

Bugfixes
--------

- Fixed rabbitmq entrypoint (`#349 <https://github.com/ClearcodeHQ/pytest-rabbitmq/issues/349>`_)


3.0.0 (2023-06-15)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/349.bugfix.rst

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "pytest-rabbitmq"
version = "3.0.0"
version = "3.0.1"
description = "RabbitMQ process and client fixtures for pytest"
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "rabbitmq", "messsage queue"]
Expand Down Expand Up @@ -38,7 +38,7 @@ requires-python = ">= 3.8"
[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.0.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-rabbitmq/blob/v3.0.1/CHANGES.rst"

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

[tool.tbump.version]
current = "3.0.0"
current = "3.0.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
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.0.0"
__version__ = "3.0.1"

0 comments on commit 6cdff29

Please sign in to comment.