diff --git a/CHANGELOG.md b/CHANGELOG.md index 4260769a..760e723f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -166,6 +166,8 @@ calling run() directly will now cause a pytest isntance to be run in the backgro # 0.18.0 Add 'timeout' parameter for http requests (2018-08-24) +## show Bump version: 0.17.2 → 0.18.0 (2018-08-24) + ## 0.18.1 Add content type/encoding to uploaded files (2018-09-05) ## 0.18.2 Fix formatting environment variables in command line global config files (2018-09-21) @@ -430,3 +432,5 @@ This is technically not a operational change but I'm adding a new tag so it can # 2.8.0 Initial gRPC support (2024-01-20) # 2.9.0 Fix mqtt implementation checking for message publication correctly (2024-01-23) + +## 2.9.1 internal cleanup (2024-01-27) diff --git a/docs/source/conf.py b/docs/source/conf.py index 67009224..219bb8b0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -72,7 +72,7 @@ # The short X.Y version. version = "1.0" # The full version, including alpha/beta/rc tags. -release = "2.9.1" +release = "2.9.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index fa42d3ad..421ede9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ keywords = ["testing", "pytest"] name = "tavern" description = "Simple testing of RESTful APIs" -version = "2.9.1" +version = "2.9.2" dependencies = [ "PyYAML>=6.0.1,<7", @@ -189,7 +189,7 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py", "*_pb2.pyi"] docstring-code-format = true [tool.tbump.version] -current = "2.9.1" +current = "2.9.2" regex = ''' (?P\d+) diff --git a/tavern/__init__.py b/tavern/__init__.py index 3b2b435a..0cdf7e9a 100644 --- a/tavern/__init__.py +++ b/tavern/__init__.py @@ -1,2 +1,2 @@ """Stop pytest warning about module already imported: PYTEST_DONT_REWRITE""" -__version__ = "2.9.1" +__version__ = "2.9.2"