diff --git a/debian/changelog b/debian/changelog index 54ebe3e4..d8a145a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +kicost (1.1.19-1) stable; urgency=medium + + * Components groupings now isn't case sensitive + * Fixed Element14 issues when no RoHS info found + * Fixed Element14 country selection + * Added warning about missing config file + + -- Salvador Eduardo Tropea Mon, 06 May 2024 11:09:42 -0300 + kicost (1.1.18-1) stable; urgency=medium * Fixed problems when no arguments were specified diff --git a/kicost/currency_converter/default_rates.py b/kicost/currency_converter/default_rates.py index 3f648eda..10bd824e 100644 --- a/kicost/currency_converter/default_rates.py +++ b/kicost/currency_converter/default_rates.py @@ -1,35 +1,35 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- -default_date = '2023-05-15' +default_date = '2024-05-06' default_rates = {'EUR': 1.0, - 'USD': 1.0876, - 'JPY': 148.15, + 'USD': 1.0776, + 'JPY': 165.7, 'BGN': 1.9558, - '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, + 'CZK': 24.995, + 'DKK': 7.4589, + 'GBP': 0.8566, + 'HUF': 389.38, + 'PLN': 4.3185, + 'RON': 4.9688, + 'SEK': 11.625, + 'CHF': 0.9754, + 'ISK': 150.3, + 'NOK': 11.6663, + 'TRY': 34.7747, + 'AUD': 1.6248, + 'BRL': 5.4683, + 'CAD': 1.4731, + 'CNY': 7.7662, + 'HKD': 8.4223, + 'IDR': 17289.39, + 'ILS': 4.0322, + 'INR': 89.9875, + 'KRW': 1460.0, + 'MXN': 18.2346, + 'MYR': 5.1067, + 'NZD': 1.7891, + 'PHP': 61.66, 'SGD': 1.4548, - 'THB': 36.772, - 'ZAR': 20.7496, + 'THB': 39.618, + 'ZAR': 19.8369, } diff --git a/kicost/version.py b/kicost/version.py index fc9c699b..9a60d10e 100644 --- a/kicost/version.py +++ b/kicost/version.py @@ -1,4 +1,4 @@ __author__ = 'XESS Corporation' __email__ = 'info@xess.com' -__version__ = '1.1.18' -__build__ = 'd70ad0d-2023-05-15' +__version__ = '1.1.19' +__build__ = '8e1f5e2-2024-05-06'