Hello community,

here is the log from the commit of package trytond_currency for 
openSUSE:Factory checked in at 2017-09-17 22:39:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_currency (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_currency.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_currency"

Sun Sep 17 22:39:07 2017 rev:3 rq:526513 version:4.2.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_currency/trytond_currency.changes        
2017-07-05 23:56:05.260100948 +0200
+++ /work/SRC/openSUSE:Factory/.trytond_currency.new/trytond_currency.changes   
2017-09-17 22:40:05.225821496 +0200
@@ -0,0 +1,5 @@
+-------------------------------------------------------------------
+Sat Sep  9 16:01:04 UTC 2017 - [email protected]
+
+- Version 4.2.1 - Bugfix Release
+

Old:
----
  trytond_currency-4.2.0.tar.gz

New:
----
  trytond_currency-4.2.1.tar.gz

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

Other differences:
------------------
++++++ trytond_currency.spec ++++++
--- /var/tmp/diff_new_pack.z9Ky3W/_old  2017-09-17 22:40:05.781743333 +0200
+++ /var/tmp/diff_new_pack.z9Ky3W/_new  2017-09-17 22:40:05.789742208 +0200
@@ -19,7 +19,7 @@
 
 %define majorver 4.2
 Name:           trytond_currency
-Version:        %{majorver}.0
+Version:        %{majorver}.1
 Release:        0
 Summary:        The "currency" module for the Tryton ERP system
 License:        GPL-3.0

++++++ trytond_currency-4.2.0.tar.gz -> trytond_currency-4.2.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/CHANGELOG 
new/trytond_currency-4.2.1/CHANGELOG
--- old/trytond_currency-4.2.0/CHANGELOG        2016-11-28 16:10:32.000000000 
+0100
+++ new/trytond_currency-4.2.1/CHANGELOG        2017-09-04 22:46:27.000000000 
+0200
@@ -1,3 +1,6 @@
+Version 4.2.1 - 2017-09-04
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.0 - 2016-11-28
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/COPYRIGHT 
new/trytond_currency-4.2.1/COPYRIGHT
--- old/trytond_currency-4.2.0/COPYRIGHT        2016-11-28 16:10:29.000000000 
+0100
+++ new/trytond_currency-4.2.1/COPYRIGHT        2017-09-04 22:46:27.000000000 
+0200
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2016 Cédric Krier.
+Copyright (C) 2008-2017 Cédric Krier.
 Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2016 B2CK SPRL.
+Copyright (C) 2008-2017 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/PKG-INFO 
new/trytond_currency-4.2.1/PKG-INFO
--- old/trytond_currency-4.2.0/PKG-INFO 2016-11-28 16:10:44.000000000 +0100
+++ new/trytond_currency-4.2.1/PKG-INFO 2017-09-04 22:46:28.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_currency
-Version: 4.2.0
+Version: 4.2.1
 Summary: Tryton module with currencies
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/currency.py 
new/trytond_currency-4.2.1/currency.py
--- old/trytond_currency-4.2.0/currency.py      2015-11-15 21:34:22.000000000 
+0100
+++ new/trytond_currency-4.2.1/currency.py      2017-09-04 22:46:26.000000000 
+0200
@@ -244,7 +244,6 @@
 class Rate(ModelSQL, ModelView):
     'Rate'
     __name__ = 'currency.currency.rate'
-    _rec_name = 'date'
     date = fields.Date('Date', required=True, select=True)
     rate = fields.Numeric('Rate', digits=(12, 6), required=1)
     currency = fields.Many2One('currency.currency', 'Currency',
@@ -270,3 +269,6 @@
     @classmethod
     def check_xml_record(self, records, values):
         return True
+
+    def get_rec_name(self, name):
+        return str(self.date)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/setup.cfg 
new/trytond_currency-4.2.1/setup.cfg
--- old/trytond_currency-4.2.0/setup.cfg        2016-11-28 16:10:44.000000000 
+0100
+++ new/trytond_currency-4.2.1/setup.cfg        2017-09-04 22:46:28.000000000 
+0200
@@ -1,5 +1,4 @@
 [egg_info]
 tag_build = 
 tag_date = 0
-tag_svn_revision = 0
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_currency-4.2.0/tryton.cfg 
new/trytond_currency-4.2.1/tryton.cfg
--- old/trytond_currency-4.2.0/tryton.cfg       2016-11-28 16:10:24.000000000 
+0100
+++ new/trytond_currency-4.2.1/tryton.cfg       2016-11-28 18:42:04.000000000 
+0100
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.0
+version=4.2.1
 depends:
     ir
     res
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/trytond_currency-4.2.0/trytond_currency.egg-info/PKG-INFO 
new/trytond_currency-4.2.1/trytond_currency.egg-info/PKG-INFO
--- old/trytond_currency-4.2.0/trytond_currency.egg-info/PKG-INFO       
2016-11-28 16:10:40.000000000 +0100
+++ new/trytond_currency-4.2.1/trytond_currency.egg-info/PKG-INFO       
2017-09-04 22:46:28.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-currency
-Version: 4.2.0
+Version: 4.2.1
 Summary: Tryton module with currencies
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to