diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f6c488..24f5a3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p --- +## [0.8.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.8.0) - 2020-11-12 + +### Fixed + +* Fixed ng add crash if tslint is not installed. + +### Added + +* Support for Angular 11. +* [Documentation](https://github.com/FortAwesome/angular-fontawesome/blob/master/docs/guide/storybook.md) on how to use angular-fontawesome with Storybook. + +### Removed + +* Angular 10.x is no longer supported. If you are using this version, please, stick with version 0.7.0. + ## [0.7.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.7.0) - 2020-07-08 ### Fixed diff --git a/README.md b/README.md index 0ed61bc..dd3d187 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,7 @@ $ npm install @fortawesome/angular-fontawesome@ |0.4.x, 0.5.x|8.x|not supported| |0.6.x|9.x|supported| |0.7.x|10.x|supported| +|0.8.x|11.x|supported| ## Usage To get up and running using Font Awesome with Angular follow below steps: @@ -135,6 +136,9 @@ being awesome contributors to this project. **We'd like to take a moment to reco [ej2](https://github.com/ej2) [peterblazejewicz](https://github.com/peterblazejewicz) [arjenbrandenburgh](https://github.com/arjenbrandenburgh) +[athisun](https://github.com/athisun) +[madebyjeffrey](https://github.com/madebyjeffrey) +[benjamincharity](https://github.com/benjamincharity) 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 cbb852a..45647f7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "$schema": "./node_modules/ng-packagr/package.schema.json", "name": "@fortawesome/angular-fontawesome", - "version": "0.7.0", + "version": "0.8.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 1c543a8..3915a8c 100644 --- a/projects/schematics/src/ng-add/versions.ts +++ b/projects/schematics/src/ng-add/versions.ts @@ -1,3 +1,3 @@ -export const svgCoreVersion = '^1.2.28'; -export const angularFontawesomeVersion = '~0.7.0'; -export const iconPackVersion = '^5.13.0'; +export const svgCoreVersion = '^1.2.32'; +export const angularFontawesomeVersion = '~0.8.0'; +export const iconPackVersion = '^5.15.1';