Skip to content

Commit af4b9e6

Browse files
committed
Release 7.0.1
1 parent 8cfaaec commit af4b9e6

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGES.rst

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

44
.. towncrier release notes start
55
6+
7.0.1 (2025-03-19)
7+
==================
8+
9+
Bugfixes
10+
--------
11+
12+
- Close postgresql connection after loading sql files.
13+
14+
Fixes possible `ResourceWarning`
15+
- Fixed an issue, where defining load paths in ini/toml configuration would fail
16+
due to pytest's LocalPath not having an endswith method.
17+
18+
619
7.0.0 (2025-02-23)
720
==================
821

newsfragments/+3f45d2d2.bugfix.rst

Lines changed: 0 additions & 2 deletions
This file was deleted.

newsfragments/+8bf3ab6b.bugfix.rst

Lines changed: 0 additions & 3 deletions
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-postgresql"
3-
version = "7.0.0"
3+
version = "7.0.1"
44
description = "Postgresql fixtures and fixture factories for Pytest."
55
readme = "README.rst"
66
keywords = ["tests", "pytest", "fixture", "postgresql"]
@@ -39,7 +39,7 @@ requires-python = ">= 3.9"
3939
[project.urls]
4040
"Source" = "https://github.com/dbfixtures/pytest-postgresql"
4141
"Bug Tracker" = "https://github.com/dbfixtures/pytest-postgresql/issues"
42-
"Changelog" = "https://github.com/dbfixtures/pytest-postgresql/blob/v7.0.0/CHANGES.rst"
42+
"Changelog" = "https://github.com/dbfixtures/pytest-postgresql/blob/v7.0.1/CHANGES.rst"
4343

4444
[project.entry-points."pytest11"]
4545
pytest_postgresql = "pytest_postgresql.plugin"
@@ -107,7 +107,7 @@ name = "Miscellaneus"
107107
showcontent = false
108108

109109
[tool.tbump.version]
110-
current = "7.0.0"
110+
current = "7.0.1"
111111

112112
# Example of a semver regexp.
113113
# Make sure this matches current_version before

pytest_postgresql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# along with pytest-postgresql. If not, see <http://www.gnu.org/licenses/>.
1919
"""Main module for pytest-postgresql."""
2020

21-
__version__ = "7.0.0"
21+
__version__ = "7.0.1"

0 commit comments

Comments
 (0)