[tryton-debian-vcs] tryton-modules-sale-opportunity branch debian updated. debian/3.4.1-1-5-g6f41bfd
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Feb 25 00:44:35 UTC 2015
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-opportunity.git;a=commitdiff;h=debian/3.4.1-1-5-g6f41bfd
commit 6f41bfdfafc4d37c0028d2c57b741f81caa9072a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Feb 24 19:04:46 2015 +0100
Releasing debian version 3.4.2-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 06bfc95..bbdfec4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,12 @@
+tryton-modules-sale-opportunity (3.4.2-1) unstable; urgency=medium
+
+ * Adding actual upstream signing key.
+ * Improving boilerplate in d/control (Closes: #771722).
+ * Merging upstream version 3.4.2.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Tue, 24 Feb 2015 19:04:46 +0100
+
tryton-modules-sale-opportunity (3.4.1-1) unstable; urgency=medium
* Merging upstream version 3.4.1.
commit c5a43b466005e253ba8ceed229635a88afd65a5a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Feb 24 19:04:45 2015 +0100
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index 844207c..f2e3746 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,8 +2,8 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
Copyright: 2010-2011 Open Labs Business Solutions
- 2010-2014 Cédric Krier
- 2010-2014 B2CK SPRL
+ 2010-2015 Cédric Krier
+ 2010-2015 B2CK SPRL
License: GPL-3+
Files: debian/*
commit 9ed29b0bd83f53c0aecc987d1636e49c937452b0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Feb 24 19:04:45 2015 +0100
Merging upstream version 3.4.2.
diff --git a/CHANGELOG b/CHANGELOG
index 15ea0fe..d58035c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.2 - 2015-02-21
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.1 - 2014-12-03
* Bug fixes (see mercurial logs for details)
diff --git a/COPYRIGHT b/COPYRIGHT
index d304d80..56606a0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
Copyright (C) 2010-2011 Open Labs Business Solutions.
-Copyright (C) 2010-2014 Cédric Krier.
-Copyright (C) 2010-2014 B2CK SPRL.
+Copyright (C) 2010-2015 Cédric Krier.
+Copyright (C) 2010-2015 B2CK SPRL.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index 489046d..3741640 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_sale_opportunity
-Version: 3.4.1
+Version: 3.4.2
Summary: Tryton module with leads and opportunities
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/opportunity.py b/opportunity.py
index da767ec..02419e7 100644
--- a/opportunity.py
+++ b/opportunity.py
@@ -499,9 +499,7 @@ class SaleOpportunityHistory(ModelSQL, ModelView):
for name, field in cls._fields.iteritems():
if name in ('id', 'opportunity', 'date', 'user'):
continue
- try:
- field.sql_type()
- except NotImplementedError:
+ if hasattr(field, 'set'):
continue
column = Column(opportunity_history, name)
columns.append(column.as_(name))
diff --git a/tryton.cfg b/tryton.cfg
index 79591f7..aeb7b7b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.4.1
+version=3.4.2
depends:
account
company
diff --git a/trytond_sale_opportunity.egg-info/PKG-INFO b/trytond_sale_opportunity.egg-info/PKG-INFO
index 5631334..298a72b 100644
--- a/trytond_sale_opportunity.egg-info/PKG-INFO
+++ b/trytond_sale_opportunity.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-sale-opportunity
-Version: 3.4.1
+Version: 3.4.2
Summary: Tryton module with leads and opportunities
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-sale-opportunity
More information about the tryton-debian-vcs
mailing list