[tryton-debian-vcs] tryton-modules-account-statement branch debian-stretch-3.6 updated. debian/3.6.0-1-9-g6f5f1ce
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Sep 4 16:56:13 UTC 2016
The following commit has been merged in the debian-stretch-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-statement.git;a=commitdiff;h=debian/3.6.0-1-9-g6f5f1ce
commit 6f5f1ce5c3d9b2218ced6a07ee2f78ef5a1a07f1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 20:56:34 2016 +0200
Releasing debian version 3.6.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 8a4cf42..a053034 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,16 @@
+tryton-modules-account-statement (3.6.1-1) unstable; urgency=medium
+
+ * Updating year of debian copyright.
+ * Unifying package short description.
+ * Adapting section naming in gbp.conf to current git-buildpackage.
+ * Improving description why we can not run the module test suites.
+ * Setting the branch in the watch file to the fixed version 3.6.
+ * Updating signing-key.asc with the actual upstream maintainer keys.
+ * Merging upstream version 3.6.1.
+ * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 03 Sep 2016 20:56:34 +0200
+
tryton-modules-account-statement (3.6.0-1) unstable; urgency=medium
* Wrapping and sorting control files (wrap-and-sort -bts).
commit 290d51c471645c96c779e55c78b7d22ed981db98
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 20:56:33 2016 +0200
Updating copyright file.
diff --git a/debian/copyright b/debian/copyright
index f8372ae..0cb70c3 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,9 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Files: *
-Copyright: 2008-2015 Cédric Krier
+Copyright: 2008-2016 Cédric Krier
2008-2013 Bertrand Chenal
- 2008-2015 B2CK SPRL
+ 2008-2016 B2CK SPRL
2004-2008 Tiny SPRL
License: GPL-3+
commit 57ebdccc0db65ce1006efbd54a138781ba048e97
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Sep 3 20:56:33 2016 +0200
Merging upstream version 3.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index a234e17..1be90c7 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2016-09-03
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/COPYRIGHT b/COPYRIGHT
index 3a28212..48f96af 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2015 Cédric Krier.
+Copyright (C) 2008-2016 Cédric Krier.
Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2015 B2CK SPRL.
+Copyright (C) 2008-2016 B2CK SPRL.
Copyright (C) 2004-2008 Tiny SPRL.
This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index e6a4b18..af59076 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_statement
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module with account statements
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/statement.py b/statement.py
index 9fc0e49..9b01467 100644
--- a/statement.py
+++ b/statement.py
@@ -543,7 +543,7 @@ class Line(ModelSQL, ModelView):
invoice = fields.Many2One('account.invoice', 'Invoice',
domain=[
If(Bool(Eval('party')), [('party', '=', Eval('party'))], []),
- If(Bool(Eval('party')), [('account', '=', Eval('account'))], []),
+ If(Bool(Eval('account')), [('account', '=', Eval('account'))], []),
If(Eval('_parent_statement', {}).get('state') == 'draft',
('state', '=', 'posted'),
('state', '!=', '')),
diff --git a/tryton.cfg b/tryton.cfg
index f9b29d8..b89671b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
account
account_invoice
diff --git a/trytond_account_statement.egg-info/PKG-INFO b/trytond_account_statement.egg-info/PKG-INFO
index 57add82..6c9c9d8 100644
--- a/trytond_account_statement.egg-info/PKG-INFO
+++ b/trytond_account_statement.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-statement
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module with account statements
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_account_statement.egg-info/requires.txt b/trytond_account_statement.egg-info/requires.txt
index 7d062c6..a609167 100644
--- a/trytond_account_statement.egg-info/requires.txt
+++ b/trytond_account_statement.egg-info/requires.txt
@@ -4,4 +4,4 @@ trytond_account_invoice >= 3.6, < 3.7
trytond_company >= 3.6, < 3.7
trytond_currency >= 3.6, < 3.7
trytond_party >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.6, < 3.7
--
tryton-modules-account-statement
More information about the tryton-debian-vcs
mailing list