diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c9160b2..c667774 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +# v0.6.0 +- **[FEATURE]** Added move() functionality [see: Function move()](README.md#function_move) +- **[BUG_FIX]** Fixed a bug where release does not actually releases the resources +- **[CI_FIX]** Added missing pytest which was removed with the coverage +- **[BUMP]** Bumped mypy to v1.7 + # v0.5.0 - **[FEATURE]** Added PEP-561 compliance (py.typed) diff --git a/pyproject.toml b/pyproject.toml index 4d30952..d919181 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "uglylogger" # Required -version = "0.5.0" # Required +version = "0.6.0" # Required description = "An ugly, slow Logger class for python" # Optional readme = "README.md" # Optional requires-python = ">=3.10" diff --git a/tox-ci.ini b/tox-ci.ini index 70111e9..ebaef3f 100644 --- a/tox-ci.ini +++ b/tox-ci.ini @@ -6,7 +6,7 @@ isolated_env=false [testenv] deps = black>=23.9 - mypy>=1.6 + mypy>=1.7 flake8>=6.1 flake8-docstrings>=1.7 pytest>=7.4 diff --git a/tox.ini b/tox.ini index 689e0de..5031350 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ isolated_env=false [testenv] deps = black>=23.9 - mypy>=1.6 + mypy>=1.7 flake8>=6.1 flake8-docstrings>=1.7 pytest>=7.4