We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02fec82 commit 350b3e2Copy full SHA for 350b3e2
3 files changed
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+## 1.0.7 (26th February 2024)
4
+
5
+* Use lazy string formatting for logger by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/77
6
+* Support for Pytest 8 series by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/78
7
8
## 1.0.6 (13th February 2024)
9
10
* replace deprecated datetime.utcnow() functionality by @dijkstrar in https://github.com/pytest-dev/pytest-nunit/pull/72
pytest_nunit/__init__.py
@@ -1 +1 @@
-__version__ = "1.0.6"
+__version__ = "1.0.7"
setup.py
@@ -16,7 +16,7 @@ def getversion():
16
if 'BUILD_VERSION' in os.environ:
17
return os.environ['BUILD_VERSION']
18
else:
19
- return "1.0.6"
+ return "1.0.7"
20
21
22
setup(
0 commit comments