diff --git a/CHANGELOG.md b/CHANGELOG.md index 276974c..0f6e77e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p --- +## [1.0.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/1.0.0) - 2024-11-20 + +There are no major changes in this release. The version bump is to signal that the library is stable now and no major breaking changes are expected in the future. + +### Added + +* Support for Angular 19. +* All available icon packages to the `ng-add` schematic. +* Possibility to specify custom `rotate` value for `fa-icon` and `fa-duotone-icon` components. + +### Removed + +* Angular 18.x is no longer supported. If you are using this version, please, stick with version 0.15.0. + ## [0.15.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.15.0) - 2024-05-23 Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md). diff --git a/README.md b/README.md index a26a6ae..8a0ce33 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ $ npm install @fortawesome/angular-fontawesome@ | 0.13.x | 16.x | 5.x && 6.x | supported | | 0.14.x | 17.x | 5.x && 6.x | supported | | 0.15.x | 18.x | 5.x && 6.x | supported | +| 1.x | 19.x | 5.x && 6.x | supported | ## Usage @@ -132,6 +133,8 @@ being awesome contributors to this project. **We'd like to take a moment to reco [NayeBeckham](https://github.com/NayeBeckham) [Nosfistis](https://github.com/Nosfistis) [bleistift-zwei](https://github.com/bleistift-zwei) +[igorls](https://github.com/igorls) +[jasonlundien](https://github.com/jasonlundien) [Font Awesome Team](https://github.com/orgs/FortAwesome/people) If we've missed someone (which is quite likely) submit a Pull Request to us and we'll get it resolved. diff --git a/package.json b/package.json index 20a5017..4872d8e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fortawesome/angular-fontawesome", - "version": "0.15.0", + "version": "1.0.0", "description": "Angular Fontawesome, an Angular library", "scripts": { "test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI", diff --git a/projects/schematics/src/ng-add/versions.ts b/projects/schematics/src/ng-add/versions.ts index c833812..ff9c35b 100644 --- a/projects/schematics/src/ng-add/versions.ts +++ b/projects/schematics/src/ng-add/versions.ts @@ -1,5 +1,5 @@ -export const angularFontawesomeVersion = '~0.15.0'; -export const iconPackVersion = '^6.5.2'; +export const angularFontawesomeVersion = '^1.0.0'; +export const iconPackVersion = '^6.7.1'; export const v5 = { iconPackVersion: '^5.15.4',