diff --git a/.changeset/great-cameras-drum.md b/.changeset/great-cameras-drum.md deleted file mode 100644 index 76ac20e1..00000000 --- a/.changeset/great-cameras-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro-icon": patch ---- - -Fixes incompatability with Vite 5 by removing a deprecated method diff --git a/.changeset/great-carpets-hide.md b/.changeset/great-carpets-hide.md deleted file mode 100644 index 1ca67743..00000000 --- a/.changeset/great-carpets-hide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro-icon": patch ---- - -Fixes an edge case with `createIconPack` when a module cannot be resolved diff --git a/.changeset/tough-wombats-hang.md b/.changeset/tough-wombats-hang.md deleted file mode 100644 index 42e17fd8..00000000 --- a/.changeset/tough-wombats-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro-icon": patch ---- - -fix type import diff --git a/.changeset/young-chicken-hear.md b/.changeset/young-chicken-hear.md deleted file mode 100644 index f67e4e56..00000000 --- a/.changeset/young-chicken-hear.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"astro-icon": patch ---- - -Improves the performance for `createIconPack`'s local icon resolution diff --git a/demo/package.json b/demo/package.json index c2581e4c..1d6ffd67 100644 --- a/demo/package.json +++ b/demo/package.json @@ -10,7 +10,7 @@ }, "devDependencies": { "astro": "^3.6.4", - "astro-icon": "0.8.1" + "astro-icon": "0.8.2" }, "dependencies": { "heroicons": "^1.0.5" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index ba80e20c..916ea377 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # astro-icon +## 0.8.2 + +### Patch Changes + +- [#153](https://github.com/natemoo-re/astro-icon/pull/153) [`3664cac3633330c3d19c8e1eb6ffa5c6b8848091`](https://github.com/natemoo-re/astro-icon/commit/3664cac3633330c3d19c8e1eb6ffa5c6b8848091) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fixes incompatability with Vite 5 by removing a deprecated method + +- [#148](https://github.com/natemoo-re/astro-icon/pull/148) [`d176a7da3b7332d459ec97c0af1667b6be9057fa`](https://github.com/natemoo-re/astro-icon/commit/d176a7da3b7332d459ec97c0af1667b6be9057fa) Thanks [@kripod](https://github.com/kripod)! - Fixes an edge case with `createIconPack` when a module cannot be resolved + +- [#141](https://github.com/natemoo-re/astro-icon/pull/141) [`832ac0523905f658cebd537d65c67b391d7c9b52`](https://github.com/natemoo-re/astro-icon/commit/832ac0523905f658cebd537d65c67b391d7c9b52) Thanks [@liruifengv](https://github.com/liruifengv)! - fix type import + +- [#149](https://github.com/natemoo-re/astro-icon/pull/149) [`f5640282120e4eaa947c695e02587604f3f8b1a6`](https://github.com/natemoo-re/astro-icon/commit/f5640282120e4eaa947c695e02587604f3f8b1a6) Thanks [@kripod](https://github.com/kripod)! - Improves the performance for `createIconPack`'s local icon resolution + ## 0.8.1 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 9920b864..903e28f5 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "astro-icon", - "version": "0.8.1", + "version": "0.8.2", "type": "module", "exports": { ".": "./index.ts", diff --git a/packages/www/CHANGELOG.md b/packages/www/CHANGELOG.md index e674c8e2..0360022a 100644 --- a/packages/www/CHANGELOG.md +++ b/packages/www/CHANGELOG.md @@ -1,5 +1,12 @@ # www +## 0.0.9 + +### Patch Changes + +- Updated dependencies [[`3664cac3633330c3d19c8e1eb6ffa5c6b8848091`](https://github.com/natemoo-re/astro-icon/commit/3664cac3633330c3d19c8e1eb6ffa5c6b8848091), [`d176a7da3b7332d459ec97c0af1667b6be9057fa`](https://github.com/natemoo-re/astro-icon/commit/d176a7da3b7332d459ec97c0af1667b6be9057fa), [`832ac0523905f658cebd537d65c67b391d7c9b52`](https://github.com/natemoo-re/astro-icon/commit/832ac0523905f658cebd537d65c67b391d7c9b52), [`f5640282120e4eaa947c695e02587604f3f8b1a6`](https://github.com/natemoo-re/astro-icon/commit/f5640282120e4eaa947c695e02587604f3f8b1a6)]: + - astro-icon@0.8.2 + ## 0.0.8 ### Patch Changes diff --git a/packages/www/package.json b/packages/www/package.json index e17a6c9b..9b5a1f1b 100644 --- a/packages/www/package.json +++ b/packages/www/package.json @@ -1,6 +1,6 @@ { "name": "www", - "version": "0.0.8", + "version": "0.0.9", "private": true, "type": "module", "scripts": { @@ -11,6 +11,6 @@ }, "dependencies": { "astro": "^3.6.4", - "astro-icon": "0.8.1" + "astro-icon": "0.8.2" } }