Skip to content

Commit 63391de

Browse files
committed
Release 0.12.0
1 parent 6daf6fc commit 63391de

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

CHANGELOG.md

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

66
---
77

8+
## [0.12.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.12.0) - 2022-11-18
9+
10+
Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md).
11+
12+
### Added
13+
14+
* Support for Angular 15.
15+
* Documentation and option in `ng-add` schematic to use new [Sharp Solid](https://blog.fontawesome.com/introducing-font-awesome-sharp/) icons style.
16+
17+
### Changed
18+
19+
* Documentation on how to create `fa-icon` programmatically updated to not use deprecated `ComponentFactoryResolver`.
20+
21+
### Deprecated
22+
23+
* `classes` and `styles` inputs on all components are deprecated for removal as confusing and generally not useful. See [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/docs/upgrading/0.11.0-0.12.0.md#remove-usage-of-the-deprecated-styles-and-classes-inputs) for the suggested migration path.
24+
25+
### Removed
26+
27+
* Angular 14.x is no longer supported. If you are using this version, please, stick with version 0.11.1.
28+
829
## [0.11.1](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.11.1) - 2022-06-16
930

1031
### Fixed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ $ npm install @fortawesome/angular-fontawesome@<version>
4949
|0.9.x|12.x|5.x|supported|
5050
|0.10.x|13.x|5.x && 6.x|supported|
5151
|0.11.x|14.x|5.x && 6.x|supported|
52+
|0.12.x|15.x|5.x && 6.x|supported|
5253

5354
## Usage
5455
To get up and running using Font Awesome with Angular follow below steps:

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.11.1",
3+
"version": "0.12.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const angularFontawesomeVersion = '~0.11.1';
1+
export const angularFontawesomeVersion = '~0.12.0';
22
export const iconPackVersion = '^6.2.0';
33

44
export const v5 = {

0 commit comments

Comments
 (0)