Skip to content

Commit

Permalink
Bump to 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Jan 16, 2023
1 parent 9c6168a commit d1623d6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
11 changes: 0 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,14 +392,3 @@ This is technically not a operational change but I'm adding a new tag so it can
## 1.25.2 Only patch pyyaml when a test is actually being loaded to avoid side effect from Tavern just being in the python path (2022-12-15)

# 2.0.0 2.0.0 release (2023-01-12)

- Move anything that isn't supposed to be public into a private folder, a la pytest
- Move helpers from tavern.testutil.helpers to tavern.helpers
- Make --tavern-merge-ext-function-values default
- Move 'clear cookies' to a top-level request item
- Change force_format_include to force_original_structure
- Change to using jsonschema instead of pykwalify for tavern schema
- change test_block_config to a class
- Drop explicit support for pypy3
- Allow multiple MQTT responses to a single request

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 = "2.0.0"
release = "2.0.1"

# 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 @@ -21,7 +21,7 @@ keywords = ["testing", "pytest"]

name = "tavern"
description = "Simple testing of RESTful APIs"
version = "2.0.0"
version = "2.0.1"

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

[tool.tbump.version]
current = "2.0.0"
current = "2.0.1"

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__ = "2.0.0"
__version__ = "2.0.1"

0 comments on commit d1623d6

Please sign in to comment.