feat: bump version to 3.0.14

This commit is contained in:
BJ Dierkes 2025-05-05 11:30:13 -05:00
parent 822c22a1ff
commit c314892fb3
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# ChangeLog
## 3.0.13 - DEVELOPMENT (will be released as stable/3.0.14 or stable/3.2.0)
## 3.0.14 - May 5, 2025
Bugs:

View File

@ -1,3 +1,3 @@
"""Cement core backend module."""
VERSION = (3, 0, 13, 'final', 0) # pragma: nocover
VERSION = (3, 0, 14, '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] == 13
assert backend.VERSION[2] == 14
assert backend.VERSION[3] == 'final'
assert backend.VERSION[4] == 0