Skip to content

Commit

Permalink
Bump to 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelboulton committed Feb 16, 2023
1 parent 2213e10 commit 0e40a5f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ calling run() directly will now cause a pytest isntance to be run in the backgro

# 0.18.0 Add 'timeout' parameter for http requests (2018-08-24)

## show Bump version: 0.17.2 → 0.18.0 (2018-08-24)

## 0.18.1 Add content type/encoding to uploaded files (2018-09-05)

## 0.18.2 Fix formatting environment variables in command line global config files (2018-09-21)
Expand Down Expand Up @@ -259,6 +261,8 @@ The initial 2 hooks should allow a user to do something before every test and af

## 1.1.1 Travis fix (2020-05-23)

## travis-force Attempt to force travis to commit (2020-05-23)

## 1.1.2 fforce new verison to make travis actually commit (2020-05-23)

## 1.1.3 travis (2020-05-23)
Expand Down Expand Up @@ -396,3 +400,5 @@ This is technically not a operational change but I'm adding a new tag so it can
## 2.0.1 Bump some dependency versions (2023-01-16)

## 2.0.2 Fix saving in MQTT (2023-02-08)

## 2.0.3 Add type annotations (internal change) (2023-02-10)
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.3"
release = "2.0.4"

# 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.3"
version = "2.0.4"

dependencies = [
"PyYAML>=5.3.1,<7",
Expand Down Expand Up @@ -158,7 +158,7 @@ target-version = "py38"
known-first-party = ["tavern"]

[tool.tbump.version]
current = "2.0.3"
current = "2.0.4"

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.3"
__version__ = "2.0.4"

0 comments on commit 0e40a5f

Please sign in to comment.