Skip to content

Commit

Permalink
Release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Sep 4, 2024
1 parent fa9432a commit a03fc46
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ CHANGELOG

.. towncrier release notes start
6.1.0 (2024-09-04)
==================

Features
--------

- add support for \\ character in pytest temporary path (`#982 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/982>`__)


Miscellaneus
------------

- Add test for `PR #965 <https://github.com/ClearcodeHQ/pytest-postgresql/pull/965>`_
- refactors test_executor.py to enable Mac


6.0.1 (2024-08-14)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/+7b24253a.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/+a32d1721.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/982.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-postgresql"
version = "6.0.1"
version = "6.1.0"
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.0.1/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v6.1.0/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.0.1"
current = "6.1.0"

# 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.0.1"
__version__ = "6.1.0"

0 comments on commit a03fc46

Please sign in to comment.