Skip to content

Commit a20496d

Browse files
committed
Release 0.14.0
1 parent c3d810f commit a20496d

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

CHANGELOG.md

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

66
---
77

8+
## [0.14.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.14.0) - 2023-11-08
9+
10+
### Added
11+
12+
* Support for Angular 17.
13+
* Possibility to use all components as standalone.
14+
15+
### Changed
16+
17+
* Examples to use standalone components instead of modules.
18+
19+
### Removed
20+
21+
* Angular 16.x is no longer supported. If you are using this version, please, stick with version 0.13.0.
22+
823
## [0.13.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.13.0) - 2023-05-04
924

1025
### Added

README.md

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

5556
## Usage
5657

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.13.0",
3+
"version": "0.14.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.13.0';
2-
export const iconPackVersion = '^6.4.0';
1+
export const angularFontawesomeVersion = '~0.14.0';
2+
export const iconPackVersion = '^6.4.2';
33

44
export const v5 = {
55
svgCoreVersion: '~1.2.36',

0 commit comments

Comments
 (0)