[REL] Flectra v1.4 Lucifer

This commit is contained in:
Parthiv 2018-08-06 22:46:00 +05:30
parent 9a217698d5
commit 8205ef2346
3 changed files with 17 additions and 2 deletions

View File

@ -10,6 +10,21 @@ This changelog contains things those are improved version by version and also th
So, users can consider this **CHANGELOG** to find the differences between **Flectra** and **Odoo(Community Edition)**.
## [1.4.0] - Lucifer - 2018-08-07
### Added
- Helpdesk
- Recurring Documents
- Capital Asset Management
### Fixes
- #77 Email Invitation Link - Missing Link / Error Traceback in Email invitation
- #79 Printing Current view
- #86 Broken Documentation - Fixed links with documentations
- #87 Invalid State Code with GST for India
- #88 Sale Advance Pricelist Installation Issue
- #91 Point of Sale Issue for Order Creation
- [ALL] upstream patching till 48803ecd0ed1d628261b10c57f32657e100038f7
## [1.3.0] - Sunbeam - 2018-06-21
### Added
- Blanket Sales Orders

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: Flectra
Version: 1.2.0
Version: 1.4.0
Author: FlectraHQ
Author-email: info at flectrahq com
Maintainer: FlectraHQ

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, 3, 0, FINAL, 0, '')
version_info = (1, 4, 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])