Skip to content

Commit 7d2afc5

Browse files
committed
Release 5.1.0
1 parent b84ac98 commit 7d2afc5

13 files changed

+33
-16
lines changed

CHANGES.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
11
CHANGELOG
22
=========
3+
34
.. towncrier release notes start
45
6+
5.1.0 (2024-01-29)
7+
==================
8+
9+
Bugfixes
10+
--------
11+
12+
- Update postgresql_load default value for it to fallback into the empty list (`#881 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/881>`__)
13+
14+
15+
Features
16+
--------
17+
18+
- Support for Python 3.12 (`#835 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/835>`__)
19+
20+
21+
Miscellaneus
22+
------------
23+
24+
- Removed misleading parapgraph from one example in a README (`#688 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/688>`__)
25+
- Fixed typing exceptions for mypy 1.4 (`#765 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/765>`__)
26+
- README: fix section markup (`#771 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/771>`__, `#776 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/776>`__)
27+
- Add SQLAlchemy example for initialising common database state. (`#797 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/797>`__)
28+
- Rely on cached/artifacted Pipfile.lock.
29+
That way, it will be specifically defined for given python version/system. (`#834 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/834>`__)
30+
- CI Change - Add PostgreSQL 16, drop PostgreSQL 11 (`#836 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/836>`__)
31+
- Replace usage of `pkg_resources.parse_version` with `packaging.version.parse` (`#858 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/858>`__)
32+
33+
534
5.0.0 (2023-05-20)
635
==================
736

newsfragments/688.misc.rst

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

newsfragments/765.misc.rst

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

newsfragments/771.misc.rst

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

newsfragments/776.misc.rst

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

newsfragments/797.misc.rst

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

newsfragments/834.misc.rst

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

newsfragments/835.feature.rst

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

newsfragments/836.misc.rst

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

newsfragments/858.misc.rst

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

newsfragments/881.bugfix.rst

Lines changed: 0 additions & 1 deletion
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 = "5.0.0"
3+
version = "5.1.0"
44
description = "Postgresql fixtures and fixture factories for Pytest."
55
readme = "README.rst"
66
keywords = ["tests", "pytest", "fixture", "postgresql"]
@@ -38,7 +38,7 @@ requires-python = ">= 3.8"
3838
[project.urls]
3939
"Source" = "https://github.com/ClearcodeHQ/pytest-postgresql"
4040
"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-postgresql/issues"
41-
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v5.0.0/CHANGES.rst"
41+
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v5.1.0/CHANGES.rst"
4242

4343
[project.entry-points."pytest11"]
4444
pytest_postgresql = "pytest_postgresql.plugin"
@@ -103,7 +103,7 @@ name = "Miscellaneus"
103103
showcontent = true
104104

105105
[tool.tbump.version]
106-
current = "5.0.0"
106+
current = "5.1.0"
107107

108108
# Example of a semver regexp.
109109
# 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__ = "5.0.0"
21+
__version__ = "5.1.0"

0 commit comments

Comments
 (0)