diff --git a/CHANGELOG.md b/CHANGELOG.md index ec98e3e..4857094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.4.0](https://github.com/omacranger/fontawesome-subset/compare/4.3.1...4.4.0) + +- Support FontAwesome 6.4.0+, including the `sharp-light` and `sharp-regular` styles +- Bump dependencies & dev dependencies + ## [4.3.1](https://github.com/omacranger/fontawesome-subset/compare/4.3.0...4.3.1) - Update error / debug message when requested package cannot be resolved. Provide typical resolution if attempting to use pro features without specifying pro package in options. diff --git a/README.md b/README.md index 3510185..04c5d2e 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ fontawesomeSubset( ); ``` -You can use any of the weights / sets provided by FontAwesome Pro including `solid`, `regular`, `light`, `brands`, `duotone`, or `sharp-solid`. You can mix and match and provide as many glyphs as you plan on using to trim it down. +You can use any of the weights / sets provided by FontAwesome Pro including `solid`, `regular`, `light`, `brands`, `duotone`, `sharp-light`, `sharp-regular`, or `sharp-solid`. You can mix and match and provide as many glyphs as you plan on using to trim it down. The above example would output a directory with the following structure: diff --git a/package-lock.json b/package-lock.json index 2106c16..73e4ff1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fontawesome-subset", - "version": "4.3.1", + "version": "4.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "fontawesome-subset", - "version": "4.3.1", + "version": "4.4.0", "license": "GPL-3.0-or-later", "dependencies": { "lodash": ">=4.17.21", diff --git a/package.json b/package.json index bb007cd..c8be079 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fontawesome-subset", - "version": "4.3.1", + "version": "4.4.0", "description": "Utility to create subsets for FontAwesome and FontAwesome Pro.", "main": "dist/index.js", "types": "dist/index.d.ts",