Skip to content

Commit

Permalink
Bump to 1.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Dec 13, 2022
1 parent 041a9ba commit f33e726
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
8 changes: 0 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,3 @@ 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.25.0 Update requirements and packaging (2022-12-12)


- Test using python 3.10
- Use pyproject.toml instead of setup.py/setup.cfg
- Add locked requirements and constraints files
- Drop support for pytest 6 as it's not had a release for over a year
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.24.1'
release = '1.25.0'

# 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.24.1"
version = "1.25.0"

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

[tool.tbump.version]
current = "1.24.1"
current = "1.25.0"

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.24.1"
__version__ = "1.25.0"

0 comments on commit f33e726

Please sign in to comment.