Skip to content

Commit b01729e

Browse files
committed
Release 0.6.0
1 parent 373097c commit b01729e

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

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

66
---
77

8+
## [0.6.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.6.0) - 2020-02-08
9+
10+
Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md).
11+
12+
### Added
13+
14+
* [`FaConfig.fixedWidth` property](https://github.com/FortAwesome/angular-fontawesome/blob/master/docs/usage/icon-library.md#apply-fixed-width-by-default) to provide a default value for `FaIcon.fixedWidth` and `FaLayers.fixedWidth` properties.
15+
* Documentation of a [convenient approach](https://github.com/FortAwesome/angular-fontawesome/blob/master/docs/guide/testing.md#define-a-wrapper-module-for-fontawesomemodule) to test components using icon library.
16+
17+
### Removed
18+
19+
* Angular 8.x is no longer supported. If you are using this version, please, stick with version 0.5.0.
20+
821
## [0.6.0-alpha.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.6.0-alpha.0) - 2019-11-11
922

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

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ being awesome contributors to this project. **We'd like to take a moment to reco
132132
[<img src="https://github.com/bhanuhiteshi.png?size=72" alt="bhanuhiteshi" width="72">](https://github.com/bhanuhiteshi)
133133
[<img src="https://github.com/plinkpaste.png?size=72" alt="plinkpaste" width="72">](https://github.com/plinkpaste)
134134
[<img src="https://github.com/ej2.png?size=72" alt="ej2" width="72">](https://github.com/ej2)
135+
[<img src="https://github.com/peterblazejewicz.png?size=72" alt="peterblazejewicz" width="72">](https://github.com/peterblazejewicz)
135136

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

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "./node_modules/ng-packagr/package.schema.json",
33
"name": "@fortawesome/angular-fontawesome",
4-
"version": "0.6.0-alpha.0",
4+
"version": "0.6.0",
55
"description": "Angular Fontawesome, an Angular library",
66
"scripts": {
77
"test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI",
@@ -42,7 +42,8 @@
4242
"Ronnie Barker <[email protected]>",
4343
"bhanuhiteshi <[email protected]>",
4444
"James Hyde <[email protected]>",
45-
45+
46+
"Peter Blazejewicz <[email protected]>"
4647
],
4748
"license": "MIT",
4849
"bugs": {
@@ -96,7 +97,7 @@
9697
],
9798
"peerDependencies": {
9899
"@angular/core": "^9.0.0",
99-
"@fortawesome/fontawesome-svg-core": "^1.2.21"
100+
"@fortawesome/fontawesome-svg-core": "^1.2.27"
100101
},
101102
"ngPackage": {
102103
"lib": {
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export const svgCoreVersion = '^1.2.21';
2-
export const angularFontawesomeVersion = '~0.6.0-alpha.0';
3-
export const iconPackVersion = '^5.10.2';
1+
export const svgCoreVersion = '^1.2.27';
2+
export const angularFontawesomeVersion = '~0.6.0';
3+
export const iconPackVersion = '^5.12.1';

0 commit comments

Comments
 (0)