diff --git a/CHANGES.rst b/CHANGES.rst index b2e92f2f..a8796d88 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `__) + + 6.1.0 (2024-09-04) ================== diff --git a/newsfragments/1015.bugfix.rst b/newsfragments/1015.bugfix.rst deleted file mode 100644 index 1a29884b..00000000 --- a/newsfragments/1015.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Set minimum version of `port-for` dependecy in pyproject.toml for client installations. \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 7f357181..354f534c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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" @@ -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 diff --git a/pytest_postgresql/__init__.py b/pytest_postgresql/__init__.py index 1ce49ec0..0d451bab 100644 --- a/pytest_postgresql/__init__.py +++ b/pytest_postgresql/__init__.py @@ -18,4 +18,4 @@ # along with pytest-postgresql. If not, see . """Main module for pytest-postgresql.""" -__version__ = "6.1.0" +__version__ = "6.1.1"