1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-17 15:26:01 +00:00

Bump version to 1.10.0-dev

This commit is contained in:
Otto Winter
2018-10-20 18:32:06 +02:00
parent 70206df8b5
commit 21c22fe04a
2 changed files with 6 additions and 4 deletions

View File

@@ -46,6 +46,8 @@ def validate_board(value):
def validate_simple_esphomelib_version(value):
value = cv.string_strict(value)
if value.upper() == 'LATEST':
if ESPHOMELIB_VERSION == 'dev':
return validate_simple_esphomelib_version('dev')
return {
CONF_REPOSITORY: LIBRARY_URI_REPO,
CONF_TAG: 'v' + ESPHOMELIB_VERSION,
@@ -53,7 +55,7 @@ def validate_simple_esphomelib_version(value):
elif value.upper() == 'DEV':
return {
CONF_REPOSITORY: LIBRARY_URI_REPO,
CONF_BRANCH: 'master'
CONF_BRANCH: 'dev'
}
elif VERSION_REGEX.match(value) is not None:
return {