Skip to content

Commit 6f7d0fb

Browse files
committed
Prep for 1.0.2 release
1 parent 50ad86f commit 6f7d0fb

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 1.0.2 (19th October 2022)
4+
5+
* Don't assert that call-report exists before checking value of attribute by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/63
6+
* Fix crash when ExceptionReprGroup is set for trace in test case by @gh-ppolk in https://github.com/pytest-dev/pytest-nunit/pull/65
7+
* [minor] Add xmlschema dev dependency by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/62
8+
* [minor] Add plugin coverage by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/64
9+
310
## 1.0.1 (26th July 2022)
411

512
- Fixes a bug where the report would be empty when pytest-xdist is used [#40](https://github.com/pytest-dev/pytest-nunit/issues/40)

pytest_nunit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def getversion():
1616
if 'BUILD_VERSION' in os.environ:
1717
return os.environ['BUILD_VERSION']
1818
else:
19-
return "1.0.1"
19+
return "1.0.2"
2020

2121

2222
setup(

0 commit comments

Comments
 (0)