[tryton-debian-vcs] tryton-proteus branch debian updated. debian/4.0.0-1-3-gedea212
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Aug 8 09:36:28 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-proteus.git;a=commitdiff;h=debian/4.0.0-1-3-gedea212
commit edea21220556493d4ee2b9188edf8d5e0acbeff7
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 12:06:04 2016 +0200
Releasing debian version 4.0.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 3dc30c7..70192cd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-proteus (4.0.1-1) unstable; urgency=medium
+
+ * Updating to Standards-Version: 3.9.8, no changes needed.
+ * Merging upstream version 4.0.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Fri, 05 Aug 2016 12:06:04 +0200
+
tryton-proteus (4.0.0-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit ae824dfeffe23e66f7e7210bad1e1f3b5c706474
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 12:06:03 2016 +0200
Merging upstream version 4.0.1.
diff --git a/CHANGELOG b/CHANGELOG
index adcd04d..0be9c46 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.1 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
Version 4.0.0 - 2016-05-02
* Bug fixes (see mercurial logs for details)
* Add Python3 support
diff --git a/PKG-INFO b/PKG-INFO
index 79d83d5..7bf7c97 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 4.0.0
+Version: 4.0.1
Summary: Library to access Tryton server as a client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index 79d83d5..7bf7c97 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 4.0.0
+Version: 4.0.1
Summary: Library to access Tryton server as a client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/proteus/__init__.py b/proteus/__init__.py
index a9b904d..b8552bb 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
'''
A library to access Tryton's models like a client.
'''
-__version__ = "4.0.0"
+__version__ = "4.0.1"
__all__ = ['Model', 'Wizard', 'Report']
import sys
try:
diff --git a/proteus/pyson.py b/proteus/pyson.py
index d90cd8a..112d6df 100644
--- a/proteus/pyson.py
+++ b/proteus/pyson.py
@@ -58,6 +58,8 @@ class PYSON(object):
else:
return And(self, other)
+ __rand__ = __and__
+
def __or__(self, other):
if (isinstance(other, PYSON)
and other.types() != set([bool])):
@@ -70,6 +72,8 @@ class PYSON(object):
else:
return Or(self, other)
+ __ror__ = __or__
+
def __eq__(self, other):
return Equal(self, other)
--
tryton-proteus
More information about the tryton-debian-vcs
mailing list