From beec56e66706fe3346eac63c8df1091490de46d0 Mon Sep 17 00:00:00 2001 From: Michael Boulton Date: Sat, 27 Jan 2024 15:30:15 +0000 Subject: [PATCH] Bump to 3.0.0a4 --- CHANGELOG.md | 4 +++- docs/source/conf.py | 2 +- pyproject.toml | 4 ++-- tavern/__init__.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7612cc7f..f1f100f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -307,7 +307,7 @@ Add filterwarning to schema # 1.9.0 219 response function calls (#614) (2020-11-06) -Also log the result from 'response' ext functions +Also log the result from 'response' ext functions ## 1.7.1 Bump max version of paho-mqtt (2020-11-07) @@ -430,3 +430,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 28570512..2cfd50b8 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 = "3.0.0a3" +release = "3.0.0a4" # 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 429179ec..880a9286 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ keywords = ["testing", "pytest"] name = "tavern" description = "Simple testing of RESTful APIs" -version = "3.0.0a3" +version = "3.0.0a4" dependencies = [ "PyYAML>=6.0.1,<7", @@ -187,7 +187,7 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py", "*_pb2.pyi"] docstring-code-format = true [tool.tbump.version] -current = "3.0.0a3" +current = "3.0.0a4" regex = ''' (?P\d+) diff --git a/tavern/__init__.py b/tavern/__init__.py index fbcec9f7..ada13833 100644 --- a/tavern/__init__.py +++ b/tavern/__init__.py @@ -1,2 +1,2 @@ """Stop pytest warning about module already imported: PYTEST_DONT_REWRITE""" -__version__ = "3.0.0a3" +__version__ = "3.0.0a4"