Skip to content

Commit 84e0c9d

Browse files
committed
Release 7.0.2
1 parent 9e25533 commit 84e0c9d

File tree

7 files changed

+23
-10
lines changed

7 files changed

+23
-10
lines changed

CHANGES.rst

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

44
.. towncrier release notes start
55
6+
7.0.2 (2025-05-17)
7+
==================
8+
9+
Bugfixes
10+
--------
11+
12+
- Fix an issue where number of search counts has been hard-default set to 5 by command-line default and ini setting could not override it. (`#1115 <https://github.com/dbfixtures/pytest-postgresql/issues/1115>`__)
13+
- Update minimum required pytest version to 7.2
14+
15+
Additionally added test run of `pytest-postgresql` against oldest supported versions. (`#1131 <https://github.com/dbfixtures/pytest-postgresql/issues/1131>`__)
16+
17+
18+
Miscellaneus
19+
------------
20+
21+
- Different approach to oldest requirements file. Trying to get dependabot off of it.
22+
- Test pipeline optimisations
23+
24+
625
7.0.1 (2025-03-19)
726
==================
827

newsfragments/+6e2cf3ce.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/+bda84735.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/1115.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

newsfragments/1131.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.1"
3+
version = "7.0.2"
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.1/CHANGES.rst"
42+
"Changelog" = "https://github.com/dbfixtures/pytest-postgresql/blob/v7.0.2/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.1"
110+
current = "7.0.2"
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.1"
21+
__version__ = "7.0.2"

0 commit comments

Comments
 (0)