Merge branch 'prerelease-0.8.1' into dev

pull/480/head
Steve Penrod 2017-01-24 18:05:54 -06:00
commit b779e4a510
1 changed files with 10 additions and 0 deletions

View File

@ -22,6 +22,16 @@ from mycroft.util.log import getLogger
__author__ = 'augustnmonteiro'
# The following lines are replaced during the release process.
# START_VERSION_BLOCK
CORE_VERSION_MAJOR = 0
CORE_VERSION_MINOR = 8
CORE_VERSION_BUILD = 1
# END_VERSION_BLOCK
CORE_VERSION_STR = (str(CORE_VERSION_MAJOR) + "." +
str(CORE_VERSION_MINOR) + "." +
str(CORE_VERSION_BUILD))
LOG = getLogger(__name__)