diff --git a/debian/changelog b/debian/changelog index 30315ee7..522451ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +kicost (1.1.15-1) stable; urgency=medium + + * Fix avoid showing secrets in logs + * Fix confusing options overwrite + + -- Salvador Eduardo Tropea Thu, 15 Dec 2022 09:04:31 -0300 + kicost (1.1.14-1) stable; urgency=medium * Fix TME component URLs diff --git a/kicost/HISTORY.rst b/kicost/HISTORY.rst index 22cd1362..f97e96b1 100644 --- a/kicost/HISTORY.rst +++ b/kicost/HISTORY.rst @@ -6,6 +6,7 @@ History 1.1.15 (WIP) ____________ * Fix avoid showing secrets in logs +* Fix confusing options overwrite 1.1.14 (2022-12-14) diff --git a/kicost/currency_converter/default_rates.py b/kicost/currency_converter/default_rates.py index dd70acba..488d68aa 100644 --- a/kicost/currency_converter/default_rates.py +++ b/kicost/currency_converter/default_rates.py @@ -1,36 +1,36 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- -default_date = '2022-12-13' +default_date = '2022-12-14' default_rates = {'EUR': 1.0, - 'USD': 1.0545, - 'JPY': 144.85, + 'USD': 1.0649, + 'JPY': 143.68, 'BGN': 1.9558, - 'CZK': 24.287, - 'DKK': 7.4391, - 'GBP': 0.85753, - 'HUF': 409.65, - 'PLN': 4.6938, - 'RON': 4.9298, - 'SEK': 10.8965, - 'CHF': 0.9869, - 'ISK': 151.1, - 'NOK': 10.4679, - 'HRK': 7.5495, - 'TRY': 19.6649, - 'AUD': 1.5553, - 'BRL': 5.5784, - 'CAD': 1.4341, - 'CNY': 7.3637, - 'HKD': 8.2033, - 'IDR': 16521.81, - 'ILS': 3.6266, - 'INR': 87.2965, - 'KRW': 1378.75, - 'MXN': 20.9435, - 'MYR': 4.6704, - 'NZD': 1.6464, - 'PHP': 58.852, - 'SGD': 1.4288, - 'THB': 36.707, - 'ZAR': 18.6855, + 'CZK': 24.276, + 'DKK': 7.4392, + 'GBP': 0.86118, + 'HUF': 406.63, + 'PLN': 4.681, + 'RON': 4.9248, + 'SEK': 10.8638, + 'CHF': 0.9865, + 'ISK': 150.9, + 'NOK': 10.362, + 'HRK': 7.538, + 'TRY': 19.8579, + 'AUD': 1.551, + 'BRL': 5.6842, + 'CAD': 1.4441, + 'CNY': 7.4009, + 'HKD': 8.2751, + 'IDR': 16599.51, + 'ILS': 3.6327, + 'INR': 87.8435, + 'KRW': 1379.99, + 'MXN': 20.8635, + 'MYR': 4.6765, + 'NZD': 1.6508, + 'PHP': 59.326, + 'SGD': 1.4349, + 'THB': 36.851, + 'ZAR': 18.2563, } diff --git a/kicost/version.py b/kicost/version.py index cd1a3727..e6844878 100644 --- a/kicost/version.py +++ b/kicost/version.py @@ -1,2 +1,2 @@ __version__ = '1.1.15' -__build__ = '8cd1476-2022-12-14' +__build__ = '49a1fdb-2022-12-15'