diff --git a/.changeset/good-parrots-study.md b/.changeset/good-parrots-study.md deleted file mode 100644 index c3634ea..0000000 --- a/.changeset/good-parrots-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'pixel-scale': minor ---- - -Add `multiplyPixelScale` and `dividePixelScale` functions to simplify up- and downscaling. diff --git a/.changeset/silent-cheetahs-pull.md b/.changeset/silent-cheetahs-pull.md deleted file mode 100644 index b14296a..0000000 --- a/.changeset/silent-cheetahs-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'pixel-scale': minor ---- - -Make `options` parameter optional. diff --git a/.changeset/slimy-deers-destroy.md b/.changeset/slimy-deers-destroy.md deleted file mode 100644 index d04994c..0000000 --- a/.changeset/slimy-deers-destroy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'pixel-scale': major ---- - -Removed default export. Use the `scalePixels` named export instead. diff --git a/.changeset/spicy-spoons-develop.md b/.changeset/spicy-spoons-develop.md deleted file mode 100644 index 8a761d2..0000000 --- a/.changeset/spicy-spoons-develop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'pixel-scale': patch ---- - -Fix exports to work with both ESM and CJS. diff --git a/CHANGELOG.md b/CHANGELOG.md index c8cfa4c..e76975b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ -# 1.0.0 (2020-09-04) +# Changelog +## 2.0.0 -### Features +### Major Changes -* create package ([2781a7c](https://github.com/duniul/pixel-scale/commit/2781a7c7c11a68c97d430f7da2383382eda27f8d)) +- Removed default export. Use the `scalePixels` named export instead. _[`1505f1c`](https://github.com/duniul/pixel-scale/commit/1505f1cb90f497eb450d543b496ea1d4d916aeac) [@duniul](https://github.com/duniul)_ + +### Minor Changes + +- Add `multiplyPixelScale` and `dividePixelScale` functions to simplify up- and downscaling. _[`#3`](https://github.com/duniul/pixel-scale/pull/3) [`cf72c58`](https://github.com/duniul/pixel-scale/commit/cf72c581ed91cc419c3fc181b319c3afaec847ad) [@duniul](https://github.com/duniul)_ +- Make `options` parameter optional. _[`#3`](https://github.com/duniul/pixel-scale/pull/3) [`af13373`](https://github.com/duniul/pixel-scale/commit/af133739744c1addb701bc4dc48a19037a15c8d8) [@duniul](https://github.com/duniul)_ + +### Patch Changes + +- Fix exports to work with both ESM and CJS. _[`198f03e`](https://github.com/duniul/pixel-scale/commit/198f03e232ca73a808f6243e56c3fc51edcfc7dd) [@duniul](https://github.com/duniul)_ + +## 1.0.0 + +- Initial release diff --git a/package.json b/package.json index 87fd38f..1c0b59e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pixel-scale", - "version": "1.0.0", + "version": "2.0.0", "description": "Get the pixel scale of an image, or scale it up or down without quality loss. Useful for pixel art!", "author": "Daniel Grefberg ", "license": "ISC",