Skip to content

Commit

Permalink
Bump Version to 3.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
derks committed Nov 10, 2024
1 parent 44f2d17 commit 02aa4f2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ChangeLog

## 3.0.11 - DEVELOPMENT (will be released as stable/3.0.12)
## 3.0.12 - Nov 10, 2024

Bugs:

Expand Down
2 changes: 1 addition & 1 deletion cement/core/backend.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Cement core backend module."""

VERSION = (3, 0, 11, 'final', 0) # pragma: nocover
VERSION = (3, 0, 12, 'final', 0) # pragma: nocover
11 changes: 2 additions & 9 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/core/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -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] == 11
assert backend.VERSION[2] == 12
assert backend.VERSION[3] == 'final'
assert backend.VERSION[4] == 0

0 comments on commit 02aa4f2

Please sign in to comment.