From 82e59a707a6568146cd8388f750afba0966c25e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20=C5=9Aliwi=C5=84ski?= Date: Wed, 13 Sep 2023 15:42:03 +0200 Subject: [PATCH] Release 4.0.2 --- CHANGES.rst | 11 +++++++++++ newsfragments/522.bugfix.rst | 4 ---- pyproject.toml | 6 +++--- pytest_elasticsearch/__init__.py | 2 +- 4 files changed, 15 insertions(+), 8 deletions(-) delete mode 100644 newsfragments/522.bugfix.rst diff --git a/CHANGES.rst b/CHANGES.rst index de18d4f0..4e82ce8d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `__) + + 4.0.1 (2023-08-03) ================== diff --git a/newsfragments/522.bugfix.rst b/newsfragments/522.bugfix.rst deleted file mode 100644 index f37a9e37..00000000 --- a/newsfragments/522.bugfix.rst +++ /dev/null @@ -1,4 +0,0 @@ -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+ - diff --git a/pyproject.toml b/pyproject.toml index 4db11470..c43f94ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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" @@ -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 diff --git a/pytest_elasticsearch/__init__.py b/pytest_elasticsearch/__init__.py index bb345354..00ec245e 100644 --- a/pytest_elasticsearch/__init__.py +++ b/pytest_elasticsearch/__init__.py @@ -17,4 +17,4 @@ # You should have received a copy of the GNU Lesser General Public License # along with pytest-elasticsearch. If not, see . """Main packge for pytest-elasticsearch.""" -__version__ = "4.0.1" +__version__ = "4.0.2"