Skip to content

Commit

Permalink
Bump to 1.25.2
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Dec 15, 2022
1 parent ba82bdd commit 3974c80
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,11 @@ Also log the result from 'response' ext functions

This locks pytest to <=7.2 to avoid having to fix imports every time a new version comes out.

## 1.24.1 Format variables in test error log before dumping as a YAML string (2022-11-22)

# 1.25.0 More changes to packaging (2022-12-13)


This is technically not a operational change but I'm adding a new tag so it can br reverted in future

## 1.25.1 Remove tbump from dependencies so it can actually be uploaded to pypi (2022-12-13)
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
# The short X.Y version.
version = '1.0'
# The full version, including alpha/beta/rc tags.
release = '1.25.1'
release = '1.25.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ keywords = ["testing", "pytest"]

name = "tavern"
description = "Simple testing of RESTful APIs"
version = "1.25.1"
version = "1.25.2"

dependencies = [
"PyYAML>=5.3.1,<7",
Expand Down Expand Up @@ -179,7 +179,7 @@ exclude = [".git", "__pycache__", "docs/source/conf.py", "build", "dist"]
max-complexity = 10

[tool.tbump.version]
current = "1.25.1"
current = "1.25.2"

regex = '''
(?P<major>\d+)
Expand Down
2 changes: 1 addition & 1 deletion tavern/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Stop pytest warning about module already imported: PYTEST_DONT_REWRITE"""
__version__ = "1.25.1"
__version__ = "1.25.2"

0 comments on commit 3974c80

Please sign in to comment.