[tryton-debian-vcs] tryton-proteus branch debian-stretch-3.8 updated. debian/3.8.2-1-2-g485550f
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-stretch-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=debian/3.8.2-1-2-g485550f
commit 485550f8cf45a33f734578b4a5004b284eaf86bb
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 12:08:00 2016 +0200
Releasing debian version 3.8.3-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 2434d4f..9c75b3d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (3.8.3-1) unstable; urgency=medium
+
+ * Merging upstream version 3.8.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Fri, 05 Aug 2016 12:08:00 +0200
+
tryton-proteus (3.8.2-1) unstable; urgency=medium
* Updating signing-key.asc with the actual upstream maintainer keys.
commit 4432873e1bde14f4cce4acd88e72eecb9acc2a8f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 12:08:00 2016 +0200
Merging upstream version 3.8.3.
diff --git a/CHANGELOG b/CHANGELOG
index d1ae480..e3d6ec5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.3 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
Version 3.8.2 - 2016-07-04
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 00f08f4..7c26124 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 3.8.2
+Version: 3.8.3
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 00f08f4..7c26124 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 3.8.2
+Version: 3.8.3
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 1bf7b0e..de5b982 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
'''
A library to access Tryton's models like a client.
'''
-__version__ = "3.8.2"
+__version__ = "3.8.3"
__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