Skip to content

Commit 27cec13

Browse files
Bump to 2.14.0
1 parent facac9c commit 27cec13

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,3 +448,5 @@ This is technically not a operational change but I'm adding a new tag so it can
448448
# 2.11.0 Remove requirement for 'name' in variable files (2024-05-11)
449449

450450
# 2.12.0 Add dynamic skipping of stages based on simpleeval (2025-03-07)
451+
452+
# 2.13.0 Update minimum python version to 3.10 (2025-03-08)

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
# The short X.Y version.
7272
version = "1.0"
7373
# The full version, including alpha/beta/rc tags.
74-
release = "2.13.0"
74+
release = "2.14.0"
7575

7676
# The language for content autogenerated by Sphinx. Refer to documentation
7777
# for a list of supported languages.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = ["testing", "pytest"]
2121

2222
name = "tavern"
2323
description = "Simple testing of RESTful APIs"
24-
version = "2.13.0"
24+
version = "2.14.0"
2525

2626
dependencies = [
2727
"PyYAML>=6.0.1,<7",
@@ -198,7 +198,7 @@ exclude = ["*_pb2.py", "*_pb2_grpc.py", "*_pb2.pyi"]
198198
docstring-code-format = true
199199

200200
[tool.tbump.version]
201-
current = "2.13.0"
201+
current = "2.14.0"
202202

203203
regex = '''
204204
(?P<major>\d+)

tavern/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Stop pytest warning about module already imported: PYTEST_DONT_REWRITE"""
22

3-
__version__ = "2.13.0"
3+
__version__ = "2.14.0"

0 commit comments

Comments
 (0)