Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package trytond_stock for openSUSE:Factory 
checked in at 2022-07-03 18:27:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_stock (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_stock.new.1548 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_stock"

Sun Jul  3 18:27:07 2022 rev:29 rq:986460 version:6.0.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes      
2022-06-12 17:43:16.630496574 +0200
+++ /work/SRC/openSUSE:Factory/.trytond_stock.new.1548/trytond_stock.changes    
2022-07-03 18:27:13.092764227 +0200
@@ -1,0 +2,5 @@
+Sun Jul  3 13:13:47 UTC 2022 - Axel Braun <[email protected]>
+
+- Version 6.0.15 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_stock-6.0.14.tar.gz
  trytond_stock-6.0.14.tar.gz.asc

New:
----
  trytond_stock-6.0.15.tar.gz
  trytond_stock-6.0.15.tar.gz.asc

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

Other differences:
------------------
++++++ trytond_stock.spec ++++++
--- /var/tmp/diff_new_pack.KqPZZU/_old  2022-07-03 18:27:13.552764907 +0200
+++ /var/tmp/diff_new_pack.KqPZZU/_new  2022-07-03 18:27:13.556764912 +0200
@@ -19,7 +19,7 @@
 
 %define majorver 6.0
 Name:           trytond_stock
-Version:        %{majorver}.14
+Version:        %{majorver}.15
 Release:        0
 Summary:        The "stock" module for the Tryton ERP system
 License:        GPL-3.0-only

++++++ trytond_stock-6.0.14.tar.gz -> trytond_stock-6.0.15.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/.hgtags 
new/trytond_stock-6.0.15/.hgtags
--- old/trytond_stock-6.0.14/.hgtags    2022-06-03 19:15:41.000000000 +0200
+++ new/trytond_stock-6.0.15/.hgtags    2022-07-01 23:18:26.000000000 +0200
@@ -38,3 +38,4 @@
 a29dbdb162873ebdea451f6895f895b063b3bb07 6.0.12
 b2feddae43b362b85b5b70908cefcff96ba1b0dd 6.0.13
 3688ec9159b359be2fbb3b3de8a8fce97e9effb6 6.0.14
+0dd8675f2ca761e2f461cb96ba36ec5b841404b2 6.0.15
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/CHANGELOG 
new/trytond_stock-6.0.15/CHANGELOG
--- old/trytond_stock-6.0.14/CHANGELOG  2022-06-03 19:15:40.000000000 +0200
+++ new/trytond_stock-6.0.15/CHANGELOG  2022-07-01 23:18:25.000000000 +0200
@@ -1,3 +1,6 @@
+Version 6.0.15 - 2022-07-01
+* Bug fixes (see mercurial logs for details)
+
 Version 6.0.14 - 2022-06-03
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/PKG-INFO 
new/trytond_stock-6.0.15/PKG-INFO
--- old/trytond_stock-6.0.14/PKG-INFO   2022-06-03 19:15:45.432722800 +0200
+++ new/trytond_stock-6.0.15/PKG-INFO   2022-07-01 23:18:30.062054900 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond_stock
-Version: 6.0.14
+Version: 6.0.15
 Summary: Tryton module for stock and inventory
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
@@ -12,7 +12,6 @@
 Project-URL: Forum, https://www.tryton.org/forum
 Project-URL: Source Code, https://hg.tryton.org/modules/stock
 Keywords: tryton stock
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Plugins
 Classifier: Framework :: Tryton
@@ -65,5 +64,3 @@
 It also allows stock to be moved from one place to another, and delivered to
 and from customers and suppliers.
 
-
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/stock_reporting_margin.py 
new/trytond_stock-6.0.15/stock_reporting_margin.py
--- old/trytond_stock-6.0.14/stock_reporting_margin.py  2021-10-29 
01:41:16.000000000 +0200
+++ new/trytond_stock-6.0.15/stock_reporting_margin.py  2022-06-24 
09:55:53.000000000 +0200
@@ -93,7 +93,7 @@
                 condition=(move.currency == currency_rate.currency)
                 & (currency_rate.start_date <= move.effective_date)
                 & ((currency_rate.end_date == Null)
-                    | (currency_rate.end_date >= move.effective_date))
+                    | (currency_rate.end_date > move.effective_date))
                 )
             .join(company,
                 condition=move.company == company.id)
@@ -103,7 +103,7 @@
                 condition=(company.currency == currency_rate_company.currency)
                 & (currency_rate_company.start_date <= move.effective_date)
                 & ((currency_rate_company.end_date == Null)
-                    | (currency_rate_company.end_date >= move.effective_date))
+                    | (currency_rate_company.end_date > move.effective_date))
                 )
             .join(from_location,
                 condition=(move.from_location == from_location.id))
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/tryton.cfg 
new/trytond_stock-6.0.15/tryton.cfg
--- old/trytond_stock-6.0.14/tryton.cfg 2022-04-15 23:14:17.000000000 +0200
+++ new/trytond_stock-6.0.15/tryton.cfg 2022-06-03 19:16:01.000000000 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=6.0.14
+version=6.0.15
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-6.0.14/trytond_stock.egg-info/PKG-INFO 
new/trytond_stock-6.0.15/trytond_stock.egg-info/PKG-INFO
--- old/trytond_stock-6.0.14/trytond_stock.egg-info/PKG-INFO    2022-06-03 
19:15:44.000000000 +0200
+++ new/trytond_stock-6.0.15/trytond_stock.egg-info/PKG-INFO    2022-07-01 
23:18:28.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: trytond-stock
-Version: 6.0.14
+Version: 6.0.15
 Summary: Tryton module for stock and inventory
 Home-page: http://www.tryton.org/
 Download-URL: http://downloads.tryton.org/6.0/
@@ -12,7 +12,6 @@
 Project-URL: Forum, https://www.tryton.org/forum
 Project-URL: Source Code, https://hg.tryton.org/modules/stock
 Keywords: tryton stock
-Platform: UNKNOWN
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Plugins
 Classifier: Framework :: Tryton
@@ -65,5 +64,3 @@
 It also allows stock to be moved from one place to another, and delivered to
 and from customers and suppliers.
 
-
-

Reply via email to