[tryton-debian-vcs] tryton-modules-analytic-account branch debian-wheezy-2.6 updated. debian/2.6.0-3-5-gca924a7
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:48:08 UTC 2013
The following commit has been merged in the debian-wheezy-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-analytic-account.git;a=commitdiff;h=debian/2.6.0-3-5-gca924a7
commit ca924a71a21df1eefa74b1549d9fb5385fa6426c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:47:06 2013 +0100
Releasing debian version 2.6.1-1.
diff --git a/debian/changelog b/debian/changelog
index 4453f6c..ecf7904 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-analytic-account (2.6.1-1) unstable; urgency=low
+
+ * Removing Daniel from Uploaders. Thanks for your work! (Closes:
+ #704369).
+ * Versioning watch file for Tryton branch 2.6.
+ * Improving update of major version in Depends.
+ * Merging upstream version 2.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 11 Dec 2013 19:27:29 +0100
+
tryton-modules-analytic-account (2.6.0-3) experimental; urgency=low
* Updating Vcs-Git to correct address.
commit a6c2eac43d40f1ac39337c7f8c4b0e8b5cba0cd6
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:24:04 2013 +0100
Merging upstream version 2.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index fa16e90..52c49ed 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
Version 2.6.0 - 2012-10-22
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index e25d66b..921bc32 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: trytond_analytic_account
-Version: 2.6.0
+Version: 2.6.1
Summary: Tryton module for analytic accounting
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/account.py b/account.py
index 7572440..fbddff3 100644
--- a/account.py
+++ b/account.py
@@ -241,11 +241,11 @@ class Account(ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
- accounts = cls.search([('code',) + clause[1:]], limit=1)
+ accounts = cls.search([('code',) + tuple(clause[1:])], limit=1)
if accounts:
- return [('code',) + clause[1:]]
+ return [('code',) + tuple(clause[1:])]
else:
- return [(cls._rec_name,) + clause[1:]]
+ return [(cls._rec_name,) + tuple(clause[1:])]
@classmethod
def convert_view(cls, tree):
diff --git a/tryton.cfg b/tryton.cfg
index 164d7c2..a1bd271 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.6.0
+version=2.6.1
depends:
account
company
diff --git a/trytond_analytic_account.egg-info/PKG-INFO b/trytond_analytic_account.egg-info/PKG-INFO
index 395d968..3f30ce7 100644
--- a/trytond_analytic_account.egg-info/PKG-INFO
+++ b/trytond_analytic_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
Name: trytond-analytic-account
-Version: 2.6.0
+Version: 2.6.1
Summary: Tryton module for analytic accounting
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-analytic-account
More information about the tryton-debian-vcs
mailing list