Skip to content

Commit 0f7831c

Browse files
committed
Update version and release notes
1 parent d0e6551 commit 0f7831c

File tree

2 files changed

+28
-24
lines changed

2 files changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 27 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.4 (11th October 2023)
4+
5+
* Support for Python 3.12
6+
37
## 1.0.3 (20th October 2022)
48

59
* Fixes bug when used with xdist extension by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/66
@@ -13,53 +17,53 @@
1317

1418
## 1.0.1 (26th July 2022)
1519

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

1822
## 1.0.0 (16th March 2022)
1923

20-
- Initial stable v1 release
24+
* Initial stable v1 release
2125

2226
## 0.6.0 (4th August 2020)
2327

24-
- fix unicode escapes in cdata (#39)
25-
- fix start/stop time calculation (#42)
26-
- dropping support for python3.4 (#45)
27-
- dropping support for old xdist versions (#44)
28+
* fix unicode escapes in cdata (#39)
29+
* fix start/stop time calculation (#42)
30+
* dropping support for python3.4 (#45)
31+
* dropping support for old xdist versions (#44)
2832

2933
## 0.5.3 (15th April 2020)
3034

31-
- Bugfix - Fix time taken for tests under certain scenarios causing crash on pytest_sessionfinish
35+
* Bugfix - Fix time taken for tests under certain scenarios causing crash on pytest_sessionfinish
3236

3337
## 0.5.2 (30th August 2019)
3438

35-
- Bugfix - Escape tabbed unicode characters from stdout feed from being in CDATA output
39+
* Bugfix - Escape tabbed unicode characters from stdout feed from being in CDATA output
3640

3741
## 0.5.1 (30th August 2019)
3842

39-
- Bugfix - Fixed cause of crash for tests that could be discovered but never executed
43+
* Bugfix - Fixed cause of crash for tests that could be discovered but never executed
4044

4145
## 0.5.0 (30th August 2019)
4246

43-
- Docstrings of nodes (functions) are set as the label for TestCase elements (contribution by @mikeattara)
44-
- Pytest -k keyword filters are added to the test run filter element under ``name``.
45-
- Pytest -m marker filters are added to the test run filter element under ``namespace``.
46-
- Any path filters are added to the test run filter element under ``test``.
47-
- Each Python module containing tests is now a separate ``test-suite`` element, instead of having one large suite
48-
- Docstrings of modules are set as the label for TestSuite elements
47+
* Docstrings of nodes (functions) are set as the label for TestCase elements (contribution by @mikeattara)
48+
* Pytest -k keyword filters are added to the test run filter element under ``name``.
49+
* Pytest -m marker filters are added to the test run filter element under ``namespace``.
50+
* Any path filters are added to the test run filter element under ``test``.
51+
* Each Python module containing tests is now a separate ``test-suite`` element, instead of having one large suite
52+
* Docstrings of modules are set as the label for TestSuite elements
4953

5054
## 0.4.0 (28th August 2019)
5155

52-
- Added user domain (contribution by @williano)
53-
- Added tests and help for xdist execution (contribution by @mei-li)
54-
- Dynamically use the keyword list when generating schema to avoid reserved word collision (contribution by @gerhardtdatsomor)
55-
- Add method names, classnames and module names to output (contribution by @adekanyetomie)
56-
- Added locale and uiculture properties to runtime output (contribution by @terrameijar)
57-
- Added ``nunit_attach_on`` INI option to control when attachments are included in test cases.
56+
* Added user domain (contribution by @williano)
57+
* Added tests and help for xdist execution (contribution by @mei-li)
58+
* Dynamically use the keyword list when generating schema to avoid reserved word collision (contribution by @gerhardtdatsomor)
59+
* Add method names, classnames and module names to output (contribution by @adekanyetomie)
60+
* Added locale and uiculture properties to runtime output (contribution by @terrameijar)
61+
* Added ``nunit_attach_on`` INI option to control when attachments are included in test cases.
5862

5963
## 0.3.0 (15th July 2019)
6064

61-
- Added ``--nunit-prefix`` option.
65+
* Added ``--nunit-prefix`` option.
6266

6367
## 0.2.1 (15th July 2019)
6468

65-
- First stable release
69+
* First stable release

pytest_nunit/__init__.py

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

0 commit comments

Comments
 (0)