Skip to content

Commit

Permalink
Prep for 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney committed Oct 19, 2022
1 parent 50ad86f commit 6f7d0fb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.0.2 (19th October 2022)

* Don't assert that call-report exists before checking value of attribute by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/63
* Fix crash when ExceptionReprGroup is set for trace in test case by @gh-ppolk in https://github.com/pytest-dev/pytest-nunit/pull/65
* [minor] Add xmlschema dev dependency by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/62
* [minor] Add plugin coverage by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/64

## 1.0.1 (26th July 2022)

- Fixes a bug where the report would be empty when pytest-xdist is used [#40](https://github.com/pytest-dev/pytest-nunit/issues/40)
Expand Down
2 changes: 1 addition & 1 deletion pytest_nunit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.1"
__version__ = "1.0.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def getversion():
if 'BUILD_VERSION' in os.environ:
return os.environ['BUILD_VERSION']
else:
return "1.0.1"
return "1.0.2"


setup(
Expand Down

0 comments on commit 6f7d0fb

Please sign in to comment.