From b36574008a363bf582ee604b784b7afdf355dd69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Connor=20B=C3=A4r?= Date: Thu, 31 Aug 2023 17:33:50 +0200 Subject: [PATCH] Version Packages (#199) Co-authored-by: github-actions[bot] --- .changeset/chatty-pants-tan.md | 5 ---- CHANGELOG.md | 42 ++++++++++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 43 insertions(+), 6 deletions(-) delete mode 100644 .changeset/chatty-pants-tan.md create mode 100644 CHANGELOG.md diff --git a/.changeset/chatty-pants-tan.md b/.changeset/chatty-pants-tan.md deleted file mode 100644 index b4f89e5..0000000 --- a/.changeset/chatty-pants-tan.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@sumup/intl': minor ---- - -Added exceptions for the COP and HUF currencies to be formatted without decimals. While these currencies support decimals under the ISO standard, the decimals are not used in everyday life. diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0100fe5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,42 @@ +# @sumup/intl + +## 1.6.0 + +### Minor Changes + +- [#198](https://github.com/sumup-oss/intl-js/pull/198) [`fe8e8dc`](https://github.com/sumup-oss/intl-js/commit/fe8e8dc5fdca41e5947f4c720863b588600a9936) Thanks [@connor-baer](https://github.com/connor-baer)! - Added exceptions for the COP and HUF currencies to be formatted without decimals. While these currencies support decimals under the ISO standard, the decimals are not used in everyday life. + +## 1.5.0 + +### Minor Changes + +- [#158](https://github.com/sumup-oss/intl-js/issues/158) [`a579522`](https://github.com/sumup-oss/intl-js/commit/a579522781dc5db358430f081d1614b5f6c1cdd5) Thanks [@andrewgarshyn](https://github.com/andrewgarshyn)! - Update Croatian currency to EUR + +## 1.4.0 + +### Minor Changes + +- [#125](https://github.com/sumup-oss/intl-js/issues/125) [`f3932b6`](https://github.com/sumup-oss/intl-js/commit/f3932b6858273870fccf2ee9fb2b7b7883a5098e) Thanks [@connor-baer](https://github.com/connor-baer)! - Add support for formatting dates and times + +## 1.3.1 + +### Patch Changes + +- [#139](https://github.com/sumup-oss/intl-js/issues/139) [`a35b171`](https://github.com/sumup-oss/intl-js/commit/a35b17192332b48f4ef81c5ff8005dc1f34b20f1) Thanks [@connor-baer](https://github.com/connor-baer)! - Correct types for `resolveCurrencyFormat` + +## 1.3.0 + +### Minor Changes + +- [`682ae11`](https://github.com/sumup-oss/intl-js/commit/682ae1195139050136195afb63d31ea140b61ef8) Thanks [@connor-baer](https://github.com/connor-baer)! - Use explicit names for number formatting functions + +### Patch Changes + +- [`de86dad`](https://github.com/sumup-oss/intl-js/commit/de86dada532023a1141974bab33ed150a67dd0cf) Thanks [@connor-baer](https://github.com/connor-baer)! - Improve types of function parameters +- [`dafc682`](https://github.com/sumup-oss/intl-js/commit/dafc682a8cadd2a7d885ed4068b4e83458037e9f) Thanks [@connor-baer](https://github.com/connor-baer)! - Mark `groupDelimiter` and `decimalDelimiter` as optional + +## 1.2.0 + +### Minor Changes + +- [`b00d0ab`](https://github.com/sumup-oss/intl-js/commit/b00d0ab3e15be15d40b8aee4274bb85c46a78f18) Thanks [@connor-baer](https://github.com/connor-baer)! - Add support for formatting with unit diff --git a/package.json b/package.json index 657574d..576aa78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@sumup/intl", - "version": "1.5.0", + "version": "1.6.0", "description": "Format numbers, currency values, dates, and times for any locale with the ECMAScript Internationalization API", "repository": "git@github.com:sumup-oss/intl-js.git", "author": "Connor Bär ",