Skip to content

Commit 88ea9db

Browse files
committed
Release 1.0.0
1 parent 5de1931 commit 88ea9db

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
55

66
---
77

8+
## [1.0.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/1.0.0) - 2024-11-20
9+
10+
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.
11+
12+
### Added
13+
14+
* Support for Angular 19.
15+
* All available icon packages to the `ng-add` schematic.
16+
* Possibility to specify custom `rotate` value for `fa-icon` and `fa-duotone-icon` components.
17+
18+
### Removed
19+
20+
* Angular 18.x is no longer supported. If you are using this version, please, stick with version 0.15.0.
21+
822
## [0.15.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.15.0) - 2024-05-23
923

1024
Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md).

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ $ npm install @fortawesome/angular-fontawesome@<version>
5151
| 0.13.x | 16.x | 5.x && 6.x | supported |
5252
| 0.14.x | 17.x | 5.x && 6.x | supported |
5353
| 0.15.x | 18.x | 5.x && 6.x | supported |
54+
| 1.x | 19.x | 5.x && 6.x | supported |
5455

5556
## Usage
5657

@@ -132,6 +133,8 @@ being awesome contributors to this project. **We'd like to take a moment to reco
132133
[<img src="https://github.com/NayeBeckham.png?size=72" alt="NayeBeckham" width="72">](https://github.com/NayeBeckham)
133134
[<img src="https://github.com/Nosfistis.png?size=72" alt="Nosfistis" width="72">](https://github.com/Nosfistis)
134135
[<img src="https://github.com/bleistift-zwei.png?size=72" alt="bleistift-zwei" width="72">](https://github.com/bleistift-zwei)
136+
[<img src="https://github.com/igorls.png?size=72" alt="igorls" width="72">](https://github.com/igorls)
137+
[<img src="https://github.com/jasonlundien.png?size=72" alt="jasonlundien" width="72">](https://github.com/jasonlundien)
135138
[<img src="https://github.com/FortAwesome.png?size=72" alt="Font Awesome Team" width="72">](https://github.com/orgs/FortAwesome/people)
136139

137140
If we've missed someone (which is quite likely) submit a Pull Request to us and we'll get it resolved.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fortawesome/angular-fontawesome",
3-
"version": "0.15.0",
3+
"version": "1.0.0",
44
"description": "Angular Fontawesome, an Angular library",
55
"scripts": {
66
"test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI",

projects/schematics/src/ng-add/versions.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
export const angularFontawesomeVersion = '~0.15.0';
2-
export const iconPackVersion = '^6.5.2';
1+
export const angularFontawesomeVersion = '^1.0.0';
2+
export const iconPackVersion = '^6.7.1';
33

44
export const v5 = {
55
iconPackVersion: '^5.15.4',

0 commit comments

Comments
 (0)