[REL] 1.1.0 - Hermit

This commit is contained in:
Siddharth Bhalgami 2018-03-19 12:26:45 +05:30
parent 39080d0636
commit 29227b85ff
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ So, users can consider this **CHANGELOG** to find the differences between **Flec
## [Unreleased]
## [1.1.0] - Hermit - 2018- 03 - 19
## [1.1.0] - Hermit - 2018-03-19
### Added
- Favorite Menu Book Marking in Search
- ISO Country Code with Size of 3

View File

@ -12,7 +12,7 @@ RELEASE_LEVELS_DISPLAY = {ALPHA: ALPHA,
# properly comparable using normal operarors, for example:
# (6,1,0,'beta',0) < (6,1,0,'candidate',1) < (6,1,0,'candidate',2)
# (6,1,0,'candidate',2) < (6,1,0,'final',0) < (6,1,2,'final',0)
version_info = (1, 0, 0, FINAL, 0, '')
version_info = (1, 1, 0, FINAL, 0, '')
version = '.'.join(str(s) for s in version_info[:2]) + RELEASE_LEVELS_DISPLAY[version_info[3]] + str(version_info[4] or '') + version_info[5]
series = serie = major_version = '.'.join(str(s) for s in version_info[:2])