diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c42c8c..6ededf2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [10.0.0-alpha.1](https://github.com/itgalaxy/webfont/compare/v10.0.0-alpha.0...v10.0.0-alpha.1) (2021-01-25) + + +### ⚠ BREAKING CHANGES + +* Starting from version 10 stable, you should use webfont via named import, like this: `import { webfont } from "webfont"`. + +* adopt named import/export system ([31adbc7](https://github.com/itgalaxy/webfont/commit/31adbc7faa974c3d5a1ba9ffd4a5944bcab4fae8)) + ## [10.0.0-alpha.0](https://github.com/itgalaxy/webfont/compare/v9.0.0...v10.0.0-alpha.0) (2021-01-07) ### Breaking change diff --git a/package-lock.json b/package-lock.json index e6345e13..14329a6e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "webfont", - "version": "10.0.0-alpha.0", + "version": "10.0.0-alpha.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index d2fe0b6a..10a22718 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "webfont", - "version": "10.0.0-alpha.0", + "version": "10.0.0-alpha.1", "description": "Generator of fonts from svg icons, svg icons to svg font, svg font to ttf, ttf to eot, ttf to woff, ttf to woff2", "license": "MIT", "author": "itgalaxy ", @@ -125,6 +125,7 @@ "prettify": "npm run lint:prettier -- --write", "preversion": "npm run test", "release": "standard-version", + "release-alpha": "npm run release -- --prerelease alpha", "test": "npm run test:only -- --coverage", "test:only": "nyc --clean jest src" },