diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f527e01..f3fe81b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -444,3 +444,5 @@ This is technically not a operational change but I'm adding a new tag so it can ## 2.10.1 minor changes to fix tavern_flask plugin (2024-03-27) ## 2.10.2 Fix missing schema check for redirect query params (2024-04-13) + +## 2.10.3 Allow using referenced 'finally' stages (2024-04-13) diff --git a/docs/source/conf.py b/docs/source/conf.py index d2cb3496..2e78961b 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.10.3" +release = "2.11.0" # 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 e48a730f..ece3b1ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ keywords = ["testing", "pytest"] name = "tavern" description = "Simple testing of RESTful APIs" -version = "2.10.3" +version = "2.11.0" dependencies = [ "PyYAML>=6.0.1,<7", @@ -194,7 +194,7 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py", "*_pb2.pyi"] docstring-code-format = true [tool.tbump.version] -current = "2.10.3" +current = "2.11.0" regex = ''' (?P\d+) diff --git a/tavern/__init__.py b/tavern/__init__.py index 75d74f68..c9e43d01 100644 --- a/tavern/__init__.py +++ b/tavern/__init__.py @@ -1,3 +1,3 @@ """Stop pytest warning about module already imported: PYTEST_DONT_REWRITE""" -__version__ = "2.10.3" +__version__ = "2.11.0"