Bump Version to 3.0.10

This commit is contained in:
BJ Dierkes 2024-02-28 21:17:06 -06:00
parent 9243c30da8
commit 868959298f
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# ChangeLog
## DEVELOPMENT - Will be released as 3.0.10 or 3.2
## 3.0.10 - Feb 28, 2024
Bugs:

View File

@ -1,3 +1,3 @@
"""Cement core backend module."""
VERSION = (3, 0, 9, 'final', 0) # pragma: nocover
VERSION = (3, 0, 10, 'final', 0) # pragma: nocover

View File

@ -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