From 32b6e52c1256fac1f586444d832024b4279a95d3 Mon Sep 17 00:00:00 2001 From: Michael Boulton Date: Sun, 22 Oct 2023 13:45:49 +0100 Subject: [PATCH] Bump to 2.5.0 --- CHANGELOG.md | 2 ++ docs/source/conf.py | 2 +- pyproject.toml | 6 +++--- tavern/__init__.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e3df920..794d8655 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -416,3 +416,5 @@ This is technically not a operational change but I'm adding a new tag so it can # 2.3.0 Add 'finally' block (2023-08-05) ## 2.3.1 Fix error formatting when including files with curly braces (2023-09-18) + +# 2.4.0 Allow using an ext function to create a URL (2023-09-18) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3e05c2cf..be8ed3dd 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -73,7 +73,7 @@ # The short X.Y version. version = "1.0" # The full version, including alpha/beta/rc tags. -release = "2.4.0" +release = "2.5.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 d00691f3..25a113ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,14 +21,14 @@ keywords = ["testing", "pytest"] name = "tavern" description = "Simple testing of RESTful APIs" -version = "2.4.0" +version = "2.5.0" dependencies = [ "PyYAML>=6.0.1,<7", "jmespath>=1,<2", "jsonschema>=3.2.0,<5", "paho-mqtt>=1.3.1,<=1.6.1", - "pyjwt>=2.4.0,<3", + "pyjwt>=2.5.0,<3", "pykwalify>=1.8.0,<2", "pytest>=7,<7.3", "python-box>=6,<7", @@ -165,7 +165,7 @@ target-version = "py38" known-first-party = ["tavern"] [tool.tbump.version] -current = "2.4.0" +current = "2.5.0" regex = ''' (?P\d+) diff --git a/tavern/__init__.py b/tavern/__init__.py index 231d8dc9..a39782e8 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.4.0" +__version__ = "2.5.0"