Skip to content

Commit

Permalink
Release 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Sep 5, 2024
1 parent ea2fe16 commit 053d091
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ CHANGELOG

.. towncrier release notes start
6.1.1 (2024-09-05)
==================

Bugfixes
--------

- Set minimum version of `port-for` dependecy in pyproject.toml for client installations. (`#1015 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/1015>`__)


6.1.0 (2024-09-04)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/1015.bugfix.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-postgresql"
version = "6.1.0"
version = "6.1.1"
description = "Postgresql fixtures and fixture factories for Pytest."
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "postgresql"]
Expand Down Expand Up @@ -39,7 +39,7 @@ requires-python = ">= 3.8"
[project.urls]
"Source" = "https://github.com/ClearcodeHQ/pytest-postgresql"
"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-postgresql/issues"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v6.1.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v6.1.1/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_postgresql = "pytest_postgresql.plugin"
Expand Down Expand Up @@ -108,7 +108,7 @@ name = "Miscellaneus"
showcontent = false

[tool.tbump.version]
current = "6.1.0"
current = "6.1.1"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pytest_postgresql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
# along with pytest-postgresql. If not, see <http://www.gnu.org/licenses/>.
"""Main module for pytest-postgresql."""

__version__ = "6.1.0"
__version__ = "6.1.1"

0 comments on commit 053d091

Please sign in to comment.