Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond for openSUSE:Factory checked 
in at 2022-11-26 18:45:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond (Old)
 and      /work/SRC/openSUSE:Factory/.trytond.new.1597 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond"

Sat Nov 26 18:45:29 2022 rev:75 rq:1038266 version:6.0.24

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond/trytond.changes  2022-11-06 
12:43:24.965816683 +0100
+++ /work/SRC/openSUSE:Factory/.trytond.new.1597/trytond.changes        
2022-11-26 18:45:33.671251201 +0100
@@ -1,0 +2,5 @@
+Fri Nov 18 19:04:12 UTC 2022 - Axel Braun <axel.br...@gmx.de>
+
+- Version 6.0.24 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond-6.0.23.tar.gz
  trytond-6.0.23.tar.gz.asc

New:
----
  trytond-6.0.24.tar.gz
  trytond-6.0.24.tar.gz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trytond.spec ++++++
--- /var/tmp/diff_new_pack.SAUq3B/_old  2022-11-26 18:45:34.387255445 +0100
+++ /var/tmp/diff_new_pack.SAUq3B/_new  2022-11-26 18:45:34.391255469 +0100
@@ -20,7 +20,7 @@
 %define majorver 6.0
 %define base_name tryton
 Name:           trytond
-Version:        %{majorver}.23
+Version:        %{majorver}.24
 Release:        0
 Summary:        An Enterprise Resource Planning (ERP) system
 License:        GPL-3.0-or-later

++++++ trytond-6.0.23.tar.gz -> trytond-6.0.24.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/.hgtags new/trytond-6.0.24/.hgtags
--- old/trytond-6.0.23/.hgtags  2022-11-05 17:08:55.000000000 +0100
+++ new/trytond-6.0.24/.hgtags  2022-11-17 18:46:24.000000000 +0100
@@ -47,3 +47,4 @@
 221212011e95b8004c93ec76d21f5ffa12e866ee 6.0.21
 3ff41e43408ddccd4ce91170b6536a2f5cd0112b 6.0.22
 7d81a0faef794489d63fb164d0fb2ba2196c878b 6.0.23
+9b36d68c67a48a2203ef3598f5379d708781dc9e 6.0.24
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/CHANGELOG new/trytond-6.0.24/CHANGELOG
--- old/trytond-6.0.23/CHANGELOG        2022-11-05 17:08:54.000000000 +0100
+++ new/trytond-6.0.24/CHANGELOG        2022-11-17 18:46:24.000000000 +0100
@@ -1,3 +1,7 @@
+Version 6.0.24 - 2022-11-17
+---------------------------
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.23 - 2022-11-05
 ---------------------------
 * Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/PKG-INFO new/trytond-6.0.24/PKG-INFO
--- old/trytond-6.0.23/PKG-INFO 2022-11-05 17:08:57.079117800 +0100
+++ new/trytond-6.0.24/PKG-INFO 2022-11-17 18:46:26.848553700 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.23
+Version: 6.0.24
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/trytond/__init__.py 
new/trytond-6.0.24/trytond/__init__.py
--- old/trytond-6.0.23/trytond/__init__.py      2022-10-17 23:36:31.000000000 
+0200
+++ new/trytond-6.0.24/trytond/__init__.py      2022-11-05 17:09:12.000000000 
+0100
@@ -7,7 +7,7 @@
 
 from lxml import etree, objectify
 
-__version__ = "6.0.23"
+__version__ = "6.0.24"
 
 os.environ['TZ'] = 'UTC'
 if hasattr(time, 'tzset'):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/trytond/pyson.py 
new/trytond-6.0.24/trytond/pyson.py
--- old/trytond-6.0.23/trytond/pyson.py 2022-04-14 23:25:02.000000000 +0200
+++ new/trytond-6.0.24/trytond/pyson.py 2022-11-11 23:24:39.000000000 +0100
@@ -31,8 +31,7 @@
             other = Bool(other)
         if (isinstance(self, And)
                 and not isinstance(self, Or)):
-            self._statements.append(other)
-            return self
+            return And(*self._statements, other)
         if self.types() != {bool}:
             return And(Bool(self), other)
         else:
@@ -45,8 +44,7 @@
                 and other.types() != {bool}):
             other = Bool(other)
         if isinstance(self, Or):
-            self._statements.append(other)
-            return self
+            return Or(*self._statements, other)
         if self.types() != {bool}:
             return Or(Bool(self), other)
         else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond-6.0.23/trytond.egg-info/PKG-INFO 
new/trytond-6.0.24/trytond.egg-info/PKG-INFO
--- old/trytond-6.0.23/trytond.egg-info/PKG-INFO        2022-11-05 
17:08:56.000000000 +0100
+++ new/trytond-6.0.24/trytond.egg-info/PKG-INFO        2022-11-17 
18:46:25.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond
-Version: 6.0.23
+Version: 6.0.24
 Summary: Tryton server
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/

Reply via email to