Skip to content

Commit

Permalink
Release 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Jan 29, 2024
1 parent b84ac98 commit 7d2afc5
Show file tree
Hide file tree
Showing 13 changed files with 33 additions and 16 deletions.
29 changes: 29 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,36 @@
CHANGELOG
=========

.. towncrier release notes start
5.1.0 (2024-01-29)
==================

Bugfixes
--------

- Update postgresql_load default value for it to fallback into the empty list (`#881 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/881>`__)


Features
--------

- Support for Python 3.12 (`#835 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/835>`__)


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

- Removed misleading parapgraph from one example in a README (`#688 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/688>`__)
- Fixed typing exceptions for mypy 1.4 (`#765 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/765>`__)
- README: fix section markup (`#771 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/771>`__, `#776 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/776>`__)
- Add SQLAlchemy example for initialising common database state. (`#797 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/797>`__)
- Rely on cached/artifacted Pipfile.lock.
That way, it will be specifically defined for given python version/system. (`#834 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/834>`__)
- CI Change - Add PostgreSQL 16, drop PostgreSQL 11 (`#836 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/836>`__)
- Replace usage of `pkg_resources.parse_version` with `packaging.version.parse` (`#858 <https://github.com/ClearcodeHQ/pytest-postgresql/issues/858>`__)


5.0.0 (2023-05-20)
==================

Expand Down
1 change: 0 additions & 1 deletion newsfragments/688.misc.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/776.misc.rst

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions newsfragments/834.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/835.feature.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion newsfragments/881.bugfix.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 = "5.0.0"
version = "5.1.0"
description = "Postgresql fixtures and fixture factories for Pytest."
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "postgresql"]
Expand Down Expand Up @@ -38,7 +38,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/v5.0.0/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-postgresql/blob/v5.1.0/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_postgresql = "pytest_postgresql.plugin"
Expand Down Expand Up @@ -103,7 +103,7 @@ name = "Miscellaneus"
showcontent = true

[tool.tbump.version]
current = "5.0.0"
current = "5.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__ = "5.0.0"
__version__ = "5.1.0"

0 comments on commit 7d2afc5

Please sign in to comment.