diff --git a/CHANGELOG.md b/CHANGELOG.md index 578cadd5..35765828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [0.5.0](https://github.com/tobiasdiez/storybook-vue-addon/compare/v0.4.0...v0.5.0) (2023-10-15) + + +### ๐Ÿ”– Features + +* add vue3-vite as supported builder ([#69](https://github.com/tobiasdiez/storybook-vue-addon/issues/69)) ([ebadd98](https://github.com/tobiasdiez/storybook-vue-addon/commit/ebadd98fc8775add86e60d83794bc394160e7338)) +* improve and document typescript support ([#81](https://github.com/tobiasdiez/storybook-vue-addon/issues/81)) ([84d9eb7](https://github.com/tobiasdiez/storybook-vue-addon/commit/84d9eb79f686133c60e9d47c760a1e9cc5495a52)) + + +### ๐Ÿ› Bug Fixes + +* disable vue compiler hoisting to fix clashing variables when using standard html tags ([#68](https://github.com/tobiasdiez/storybook-vue-addon/issues/68)) ([498c646](https://github.com/tobiasdiez/storybook-vue-addon/commit/498c646a88e63578a5b73cfdd01ef8a942c21af8)) + + +### ๐Ÿงน Miscellaneous + +* **deps:** update actions/checkout action to v4 ([#72](https://github.com/tobiasdiez/storybook-vue-addon/issues/72)) ([15b50a4](https://github.com/tobiasdiez/storybook-vue-addon/commit/15b50a46f4b7580f2e80a74be2c2c1513b03b15a)) +* **deps:** update all non-major dependencies ([#58](https://github.com/tobiasdiez/storybook-vue-addon/issues/58)) ([361245d](https://github.com/tobiasdiez/storybook-vue-addon/commit/361245d6d4d6aedc8083416c8b018fe8eecd7a69)) +* **deps:** update dependency prettier to v3 ([#61](https://github.com/tobiasdiez/storybook-vue-addon/issues/61)) ([c3b87e4](https://github.com/tobiasdiez/storybook-vue-addon/commit/c3b87e42123c22e8f1934ccd017467cd7ed0d41e)) +* **deps:** update devdependency eslint-config-prettier to v9 ([#65](https://github.com/tobiasdiez/storybook-vue-addon/issues/65)) ([25f922c](https://github.com/tobiasdiez/storybook-vue-addon/commit/25f922c9f203d70fae35c343e4a0add91736c745)) +* **deps:** update devdependency eslint-plugin-unused-imports to v3 ([#64](https://github.com/tobiasdiez/storybook-vue-addon/issues/64)) ([02839f9](https://github.com/tobiasdiez/storybook-vue-addon/commit/02839f9b53c304ec562f34df20d9bf7bc6aa4897)) +* **deps:** update devdependency nodemon to v3 ([#62](https://github.com/tobiasdiez/storybook-vue-addon/issues/62)) ([2d25010](https://github.com/tobiasdiez/storybook-vue-addon/commit/2d25010df85003aae69878b4883876817215b703)) +* **deps:** update devdependency rollup to v4 ([#78](https://github.com/tobiasdiez/storybook-vue-addon/issues/78)) ([ebe4c1e](https://github.com/tobiasdiez/storybook-vue-addon/commit/ebe4c1e0c228200194df259ac22f0e574e2e86da)) +* **deps:** update devdependency tsup to v7 ([#59](https://github.com/tobiasdiez/storybook-vue-addon/issues/59)) ([b940d41](https://github.com/tobiasdiez/storybook-vue-addon/commit/b940d417353652b380ca39289f1d208284804be8)) +* move tests closer to code ([#83](https://github.com/tobiasdiez/storybook-vue-addon/issues/83)) ([5ad8d41](https://github.com/tobiasdiez/storybook-vue-addon/commit/5ad8d41b1bec3933a59dcb8fe5c49f2b84988ccd)) +* use workspace feature for example ([#79](https://github.com/tobiasdiez/storybook-vue-addon/issues/79)) ([fb512c8](https://github.com/tobiasdiez/storybook-vue-addon/commit/fb512c8ca55e1a22715aaf2731eedfc9c6cf4bb0)) + ## [0.4.0](https://github.com/tobiasdiez/storybook-vue-addon/compare/v0.3.0...v0.4.0) (2023-05-01) ### ๐Ÿ”– Features diff --git a/package.json b/package.json index 87c874f4..41c06dc5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "storybook-vue-addon", "type": "module", - "version": "0.4.0", + "version": "0.5.0", "packageManager": "pnpm@8.9.0", "description": "Storybook stories in native Vue format", "license": "MIT",