diff --git a/CHANGELOG.md b/CHANGELOG.md index d43c28c1..8dd21999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,41 @@ # Changelog +## v9.0.0 (2023-05-10) + +#### :boom: Breaking Change + +- [#602](https://github.com/qonto/ember-phone-input/pull/602) Drop node v14 support ([@anas7asia](https://github.com/anas7asia)) + +- [#590](https://github.com/qonto/ember-phone-input/pull/590) Update dependency intl-tel-input to v18 ([@renovate[bot]](https://github.com/apps/renovate)) + +- [#588](https://github.com/qonto/ember-phone-input/pull/602) Remove support for Ember 3.16 and 3.20 ([@anas7asia](https://github.com/anas7asia)) + +#### :rocket: Enhancement + +- [#589](https://github.com/qonto/ember-phone-input/pull/589) Add ability to pass a custom placeholder argument ([@vscav](https://github.com/vscav)) + +- [#586](https://github.com/qonto/ember-phone-input/pull/586) Convert to v2 addon format ([@anas7asia](https://github.com/anas7asia)) + +#### Release notes + +In the v1 addon flags image and CSS file were loaded globally in `index.js` thanks to `app.import`. After converting to the v2 addon format, it is not the case anymore: images and styles are loaded only on demand when the `` is used. + + +#### Committers: 2 + +- Vincent Scavinner ([@vscav](https://github.com/vscav)) +- Anastasia ([@anas7asia](https://github.com/anas7asia)) + + +## v9.0.0-alpha.2 (2023-05-10) + +#### :bug: Bug Fix +* [#604](https://github.com/qonto/ember-phone-input/pull/604) Display autoPlaceholder when customPlaceholder is not provided ([@anas7asia](https://github.com/anas7asia)) + +#### Committers: 2 +- Anastasia ([@anas7asia](https://github.com/anas7asia)) +- Vincent Scavinner ([@vscav](https://github.com/vscav)) + ## v8.0.0 (2022-11-29) #### :boom: Breaking Change diff --git a/ember-phone-input/package.json b/ember-phone-input/package.json index 6efe62f0..ad2d6b5e 100644 --- a/ember-phone-input/package.json +++ b/ember-phone-input/package.json @@ -1,6 +1,6 @@ { "name": "ember-phone-input", - "version": "8.0.0", + "version": "9.0.0", "description": "A component to input / validate / submit phone numbers", "keywords": [ "ember-addon", diff --git a/package.json b/package.json index 5500ac0c..6dde51be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-phone-input", - "version": "8.0.0", + "version": "9.0.0", "private": true, "repository": { "type": "git", diff --git a/test-app/package.json b/test-app/package.json index 026a0fa9..69879435 100644 --- a/test-app/package.json +++ b/test-app/package.json @@ -1,6 +1,6 @@ { "name": "test-app", - "version": "8.0.0", + "version": "9.0.0", "private": true, "description": "Test app for ember-phone-input addon", "repository": "",