From a759194b3d670ba9a533d8937e653a8c3462091e Mon Sep 17 00:00:00 2001 From: Michael Boulton Date: Sat, 17 Feb 2024 14:05:10 +0000 Subject: [PATCH] Bump to 2.9.3 --- CHANGELOG.md | 2 ++ docs/source/conf.py | 2 +- pyproject.toml | 4 ++-- tavern/__init__.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 760e723f..f7e7dc27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -434,3 +434,5 @@ This is technically not a operational change but I'm adding a new tag so it can # 2.9.0 Fix mqtt implementation checking for message publication correctly (2024-01-23) ## 2.9.1 internal cleanup (2024-01-27) + +## 2.9.2 Fix saving in gRPC (2024-02-10) diff --git a/docs/source/conf.py b/docs/source/conf.py index 219bb8b0..bca7fbb3 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.2" +release = "2.9.3" # 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 421ede9c..3b51b1a3 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.2" +version = "2.9.3" 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.2" +current = "2.9.3" regex = ''' (?P\d+) diff --git a/tavern/__init__.py b/tavern/__init__.py index 0cdf7e9a..f955c4a6 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.2" +__version__ = "2.9.3"