[tryton-debian-vcs] tryton-modules-account-product branch debian updated. debian/4.0.1-1-3-g83fe2c4
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Sep 4 16:56:03 UTC 2016
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-product.git;a=commitdiff;h=debian/4.0.1-1-3-g83fe2c4
commit 83fe2c42270097dbcb6660576102b6a390273a63
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 21:10:57 2016 +0200
Releasing debian version 4.0.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 0f90618..70bc982 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-account-product (4.0.2-1) unstable; urgency=medium
+
+ * Updating to Standards-Version: 3.9.8, no changes needed.
+ * Merging upstream version 4.0.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 03 Sep 2016 21:10:57 +0200
+
tryton-modules-account-product (4.0.1-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit 990e8cf9cdfec7df561607c71b744ac7c360bc12
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 21:10:56 2016 +0200
Merging upstream version 4.0.2.
diff --git a/CHANGELOG b/CHANGELOG
index 9cc48d4..96dab74 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.2 - 2016-09-03
+* Bug fixes (see mercurial logs for details)
+
Version 4.0.1 - 2016-05-11
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 0f8265d..f538b6b 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_product
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module to add accounting on product
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/product.py b/product.py
index 9d77c9d..576c54c 100644
--- a/product.py
+++ b/product.py
@@ -311,7 +311,8 @@ class Template:
category_exists = table.column_exist('category')
# Migration from 3.8: rename account_category into accounts_category
- if table.column_exist('account_category'):
+ if (table.column_exist('account_category')
+ and not table.column_exist('accounts_category')):
table.column_rename('account_category', 'accounts_category')
super(Template, cls).__register__(module_name)
diff --git a/tryton.cfg b/tryton.cfg
index 06b8e41..789c352 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.0.1
+version=4.0.2
depends:
account
company
diff --git a/trytond_account_product.egg-info/PKG-INFO b/trytond_account_product.egg-info/PKG-INFO
index d571dd6..a4f1423 100644
--- a/trytond_account_product.egg-info/PKG-INFO
+++ b/trytond_account_product.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-product
-Version: 4.0.1
+Version: 4.0.2
Summary: Tryton module to add accounting on product
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-account-product
More information about the tryton-debian-vcs
mailing list