Skip to content

Commit

Permalink
Release 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Sep 13, 2023
1 parent b023b07 commit 82e59a7
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ CHANGELOG

.. towncrier release notes start
4.0.2 (2023-09-13)
==================

Bugfixes
--------

- The current version of pytest-elasticsearch is trying to use pytest.Parser.
However, pytest.Parser is added only after pytest 7. We should update
dependencies to use only pytest 7+ (`#522 <https://github.com/ClearcodeHQ/pytest-elasticsearch/issues/522>`__)


4.0.1 (2023-08-03)
==================

Expand Down
4 changes: 0 additions & 4 deletions newsfragments/522.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-elasticsearch"
version = "4.0.1"
version = "4.0.2"
description = "Elasticsearch fixtures and fixture factories for Pytest."
readme = "README.rst"
keywords = ["tests", "pytest", "fixture", "elasticsearch"]
Expand Down Expand Up @@ -37,7 +37,7 @@ requires-python = ">= 3.8"
[project.urls]
"Source" = "https://github.com/ClearcodeHQ/pytest-elasticsearch"
"Bug Tracker" = "https://github.com/ClearcodeHQ/pytest-elasticsearch/issues"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-elasticsearch/blob/v4.0.1/CHANGES.rst"
"Changelog" = "https://github.com/ClearcodeHQ/pytest-elasticsearch/blob/v4.0.2/CHANGES.rst"

[project.entry-points."pytest11"]
pytest_elasticsearch = "pytest_elasticsearch.plugin"
Expand Down Expand Up @@ -106,7 +106,7 @@ name = "Miscellaneus"
showcontent = false

[tool.tbump.version]
current = "4.0.1"
current = "4.0.2"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion pytest_elasticsearch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser General Public License
# along with pytest-elasticsearch. If not, see <http://www.gnu.org/licenses/>.
"""Main packge for pytest-elasticsearch."""
__version__ = "4.0.1"
__version__ = "4.0.2"

0 comments on commit 82e59a7

Please sign in to comment.