From 78f3a60968d3ceb48fc917560191bc039eda4b05 Mon Sep 17 00:00:00 2001 From: Anthony Shaw Date: Tue, 13 Feb 2024 16:26:25 +1100 Subject: [PATCH] Update release notes and versions for 1.0.6 --- CHANGELOG.md | 5 +++++ pytest_nunit/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f35337..94e8c3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.0.6 (13th February 2024) + +* replace deprecated datetime.utcnow() functionality by @dijkstrar in https://github.com/pytest-dev/pytest-nunit/pull/72 +* Backward compatible version of the datetime.UTC attribute by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/76 + ## 1.0.5 (13th February 2024) * Mute deprecation warning of getdefaultlocale until a better solution by @tonybaloney in https://github.com/pytest-dev/pytest-nunit/pull/74 diff --git a/pytest_nunit/__init__.py b/pytest_nunit/__init__.py index 68cdeee..382021f 100644 --- a/pytest_nunit/__init__.py +++ b/pytest_nunit/__init__.py @@ -1 +1 @@ -__version__ = "1.0.5" +__version__ = "1.0.6" diff --git a/setup.py b/setup.py index 1acd7aa..23e42fb 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def getversion(): if 'BUILD_VERSION' in os.environ: return os.environ['BUILD_VERSION'] else: - return "1.0.5" + return "1.0.6" setup(