diff --git a/CHANGELOG.md b/CHANGELOG.md
index 691c976..39adf97 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
---
+## [0.6.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.6.0) - 2020-02-08
+
+Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md).
+
+### Added
+
+* [`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.
+* 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.
+
+### Removed
+
+* Angular 8.x is no longer supported. If you are using this version, please, stick with version 0.5.0.
+
## [0.6.0-alpha.0](https://github.com/FortAwesome/angular-fontawesome/releases/tag/0.6.0-alpha.0) - 2019-11-11
Make sure to check [upgrade instructions](https://github.com/FortAwesome/angular-fontawesome/blob/master/UPGRADING.md).
diff --git a/README.md b/README.md
index 2b70cc8..322f693 100644
--- a/README.md
+++ b/README.md
@@ -132,6 +132,7 @@ being awesome contributors to this project. **We'd like to take a moment to reco
[
](https://github.com/bhanuhiteshi)
[
](https://github.com/plinkpaste)
[
](https://github.com/ej2)
+[
](https://github.com/peterblazejewicz)
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 01c0fe3..3a568a2 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.6.0-alpha.0",
+ "version": "0.6.0",
"description": "Angular Fontawesome, an Angular library",
"scripts": {
"test": "ng test angular-fontawesome --watch=false --browsers=ChromeCI",
@@ -42,7 +42,8 @@
"Ronnie Barker ",
"bhanuhiteshi ",
"James Hyde ",
- "ej2 "
+ "ej2 ",
+ "Peter Blazejewicz "
],
"license": "MIT",
"bugs": {
@@ -96,7 +97,7 @@
],
"peerDependencies": {
"@angular/core": "^9.0.0",
- "@fortawesome/fontawesome-svg-core": "^1.2.21"
+ "@fortawesome/fontawesome-svg-core": "^1.2.27"
},
"ngPackage": {
"lib": {
diff --git a/projects/schematics/src/ng-add/versions.ts b/projects/schematics/src/ng-add/versions.ts
index b90cfbb..d73f47a 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.21';
-export const angularFontawesomeVersion = '~0.6.0-alpha.0';
-export const iconPackVersion = '^5.10.2';
+export const svgCoreVersion = '^1.2.27';
+export const angularFontawesomeVersion = '~0.6.0';
+export const iconPackVersion = '^5.12.1';