diff --git a/CHANGELOG.md b/CHANGELOG.md index 55044462..e5f42964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # ChangeLog -## DEVELOPMENT - Will be released as 3.0.10 or 3.2 +## 3.0.10 - Feb 28, 2024 Bugs: diff --git a/cement/core/backend.py b/cement/core/backend.py index 906c1547..034c1681 100644 --- a/cement/core/backend.py +++ b/cement/core/backend.py @@ -1,3 +1,3 @@ """Cement core backend module.""" -VERSION = (3, 0, 9, 'final', 0) # pragma: nocover +VERSION = (3, 0, 10, 'final', 0) # pragma: nocover diff --git a/tests/core/test_backend.py b/tests/core/test_backend.py index 40d146ee..827f2f13 100644 --- a/tests/core/test_backend.py +++ b/tests/core/test_backend.py @@ -6,6 +6,6 @@ def test_version(): # ensure that we bump things properly on version changes assert backend.VERSION[0] == 3 assert backend.VERSION[1] == 0 - assert backend.VERSION[2] == 9 + assert backend.VERSION[2] == 10 assert backend.VERSION[3] == 'final' assert backend.VERSION[4] == 0