Bumping Version to 3.0.2

This commit is contained in:
BJ Dierkes 2018-11-06 10:59:05 -06:00
parent 4bdab29a74
commit 80396f4169
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# ChangeLog
## 3.0.1 - DEVELOPMENT (will be released as 3.0.2)
## 3.0.2 - November 6, 2018
Bugs:

View File

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