Skip to content

Commit

Permalink
Bumped version to 1.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
set-soft committed May 15, 2023
1 parent cd4d11e commit 43e1044
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 32 deletions.
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
kicost (1.1.17) stable; urgency=medium

* Fix Nexar problems when no MANF
* Add TME retry

-- Salvador Eduardo Tropea <[email protected]> Mon, 15 May 2023 11:06:14 -0300

kicost (1.1.16-1) stable; urgency=medium

* Disabled KitSpace API, no longer available
Expand Down
6 changes: 6 additions & 0 deletions kicost/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
History
-------

1.1.17 (2023-05-15)
_____________________
* Fix Nexar problems when no MANF
* Add TME retry


1.1.16 (2023-04-10)
_____________________
* Fix disabled KitSpace API, no longer available
Expand Down
60 changes: 30 additions & 30 deletions kicost/currency_converter/default_rates.py
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
default_date = '2023-04-06'
default_date = '2023-05-15'
default_rates = {'EUR': 1.0,
'USD': 1.0915,
'JPY': 143.49,
'USD': 1.0876,
'JPY': 148.15,
'BGN': 1.9558,
'CZK': 23.409,
'DKK': 7.451,
'GBP': 0.87495,
'HUF': 376.1,
'PLN': 4.6863,
'RON': 4.9369,
'SEK': 11.3875,
'CHF': 0.9878,
'ISK': 149.7,
'NOK': 11.3855,
'TRY': 21.0195,
'AUD': 1.6312,
'BRL': 5.5096,
'CAD': 1.4704,
'CNY': 7.5014,
'HKD': 8.5682,
'IDR': 16290.63,
'ILS': 3.9261,
'INR': 89.3655,
'KRW': 1438.81,
'MXN': 19.9624,
'MYR': 4.8015,
'NZD': 1.7387,
'PHP': 59.562,
'SGD': 1.4507,
'THB': 37.171,
'ZAR': 19.8929,
'CZK': 23.574,
'DKK': 7.4471,
'GBP': 0.86943,
'HUF': 369.3,
'PLN': 4.5078,
'RON': 4.9375,
'SEK': 11.2905,
'CHF': 0.9747,
'ISK': 150.9,
'NOK': 11.583,
'TRY': 21.3896,
'AUD': 1.6261,
'BRL': 5.3431,
'CAD': 1.4684,
'CNY': 7.5621,
'HKD': 8.525,
'IDR': 16089.55,
'ILS': 3.9776,
'INR': 89.499,
'KRW': 1453.79,
'MXN': 19.0872,
'MYR': 4.8915,
'NZD': 1.7494,
'PHP': 60.984,
'SGD': 1.4548,
'THB': 36.772,
'ZAR': 20.7496,
}
4 changes: 2 additions & 2 deletions kicost/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__author__ = 'XESS Corporation'
__email__ = '[email protected]'
__version__ = '1.1.16'
__build__ = 'e9e0b2a-2023-04-10'
__version__ = '1.1.17'
__build__ = 'd70ad0d-2023-05-15'

0 comments on commit 43e1044

Please sign in to comment.