[tryton-debian-vcs] tryton-modules-party branch debian-jessie-2.8 updated. debian/2.8.0-3-3-g43d3094
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:09:34 UTC 2013
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-party.git;a=commitdiff;h=debian/2.8.0-3-3-g43d3094
commit 43d3094ef7777cc90ff833f85ef865e72cb6b452
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:08:20 2013 +0100
Releasing debian version 2.8.1-1.
diff --git a/debian/changelog b/debian/changelog
index e6cafb6..ce93f68 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-party (2.8.1-1) unstable; urgency=low
+
+ * Fixing the branch version in the watch file.
+ * Merging upstream version 2.8.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 11 Dec 2013 18:42:31 +0100
+
tryton-modules-party (2.8.0-3) unstable; urgency=low
* Adapting the rules file to work also with git-buildpackage.
commit 596c9615bf9a2a03bf94ecfe560c35112688ade9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 18:30:05 2013 +0100
Merging upstream version 2.8.1.
diff --git a/CHANGELOG b/CHANGELOG
index e541923..2a5fa61 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.8.0 - 2013-04-22
* Bug fixes (see mercurial logs for details)
* Add url widget to contact mechanism list view
diff --git a/PKG-INFO b/PKG-INFO
index 347464a..727ae44 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_party
-Version: 2.8.0
+Version: 2.8.1
Summary: Tryton module with parties and addresses
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/address.py b/address.py
index a1b6c0b..715ddd5 100644
--- a/address.py
+++ b/address.py
@@ -101,13 +101,13 @@ class Address(ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
addresses = cls.search(['OR',
- ('zip',) + clause[1:],
- ('city',) + clause[1:],
- ('name',) + clause[1:],
+ ('zip',) + tuple(clause[1:]),
+ ('city',) + tuple(clause[1:]),
+ ('name',) + tuple(clause[1:]),
], order=[])
if addresses:
return [('id', 'in', [address.id for address in addresses])]
- return [('party',) + clause[1:]]
+ return [('party',) + tuple(clause[1:])]
@classmethod
def write(cls, addresses, vals):
diff --git a/tryton.cfg b/tryton.cfg
index 1546871..a598ce2 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.0
+version=2.8.1
depends:
country
ir
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index dbe05e2..0fe9124 100644
--- a/trytond_party.egg-info/PKG-INFO
+++ b/trytond_party.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-party
-Version: 2.8.0
+Version: 2.8.1
Summary: Tryton module with parties and addresses
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-party
More information about the tryton-debian-vcs
mailing list