Bumping Development Version to 3.0.5

This commit is contained in:
BJ Dierkes 2019-05-17 21:35:34 -05:00
parent 2c2ae1e509
commit b97d3181af
2 changed files with 2 additions and 2 deletions

View File

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