Release 0.14.0
This commit is contained in:
parent
c3d810ffd8
commit
a20496d424
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
|
|||
|
||||
---
|
||||
|
||||
## [0.14.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.14.0) - 2023-11-08
|
||||
|
||||
### Added
|
||||
|
||||
* Support for Angular 17.
|
||||
* Possibility to use all components as standalone.
|
||||
|
||||
### Changed
|
||||
|
||||
* Examples to use standalone components instead of modules.
|
||||
|
||||
### Removed
|
||||
|
||||
* Angular 16.x is no longer supported. If you are using this version, please, stick with version 0.13.0.
|
||||
|
||||
## [0.13.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.13.0) - 2023-05-04
|
||||
|
||||
### Added
|
||||
|
|
|
@ -51,6 +51,7 @@ $ npm install @fortawesome/angular-fontawesome@<version>
|
|||
|0.11.x|14.x|5.x && 6.x|supported|
|
||||
|0.12.x|15.x|5.x && 6.x|supported|
|
||||
|0.13.x|16.x|5.x && 6.x|supported|
|
||||
|0.14.x|17.x|5.x && 6.x|supported|
|
||||
|
||||
## Usage
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@fortawesome/angular-fontawesome",
|
||||
"version": "0.13.0",
|
||||
"version": "0.14.0",
|
||||
"description": "Angular Fontawesome, an Angular library",
|
||||
"scripts": {
|
||||
"test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
export const angularFontawesomeVersion = '~0.13.0';
|
||||
export const iconPackVersion = '^6.4.0';
|
||||
export const angularFontawesomeVersion = '~0.14.0';
|
||||
export const iconPackVersion = '^6.4.2';
|
||||
|
||||
export const v5 = {
|
||||
svgCoreVersion: '~1.2.36',
|
||||
|
|
Loading…
Reference in New Issue