From 8205ef2346e21f77175e5ca901c050bb09fba990 Mon Sep 17 00:00:00 2001 From: Parthiv Date: Mon, 6 Aug 2018 22:46:00 +0530 Subject: [PATCH] [REL] Flectra v1.4 Lucifer --- CHANGELOG.md | 15 +++++++++++++++ flectra/PKG-INFO | 2 +- flectra/release.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5742f3..963f4b44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/flectra/PKG-INFO b/flectra/PKG-INFO index 53dacabc..06021c42 100644 --- a/flectra/PKG-INFO +++ b/flectra/PKG-INFO @@ -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 diff --git a/flectra/release.py b/flectra/release.py index 4497562d..b9061e84 100644 --- a/flectra/release.py +++ b/flectra/release.py @@ -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])