diff --git a/CHANGELOG.md b/CHANGELOG.md index 0078d6b8..642856b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## [0.2.0](https://github.com/danielroe/typed-vuex/compare/0.1.22...0.2.0) (2021-04-29) + + +### ⚠ BREAKING CHANGES + +* all imports are now from `typed-vuex` rather than `nuxt-typed-vuex`, which is *exclusively* the module in your `nuxt.config` + +**Migration path**: Search/replace through your project `nuxt-typed-vuex` for `typed-vuex`, with the sole exception of your `nuxt.config.js`. 😊 + +### Bug Fixes + +* expose all typed-vuex types ([#231](https://github.com/danielroe/typed-vuex/issues/231)) ([9d6c479](https://github.com/danielroe/typed-vuex/commit/9d6c479b0d0781916596fd27e5f5e5e32f8579c9)) + + +### Code Refactoring + +* separate module from runtime ([#219](https://github.com/danielroe/typed-vuex/issues/219)) ([b8d556b](https://github.com/danielroe/typed-vuex/commit/b8d556b041e162c66de3e8dbd11c8f1dd5461c2a)) + ### [0.1.22](https://github.com/danielroe/nuxt-typed-vuex/compare/0.1.21...0.1.22) (2020-09-30) diff --git a/package.json b/package.json index e5cc9b36..eeba2fc2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "0.1.22", + "version": "0.2.0", "workspaces": [ "packages/*" ], diff --git a/packages/nuxt-typed-vuex/package.json b/packages/nuxt-typed-vuex/package.json index 54310dc6..f4f248d9 100644 --- a/packages/nuxt-typed-vuex/package.json +++ b/packages/nuxt-typed-vuex/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-typed-vuex", - "version": "0.1.22", + "version": "0.2.0", "description": "A typed store accessor for Nuxt.", "keywords": [ "vuex", @@ -33,7 +33,7 @@ "dev": "nuxt test/fixture" }, "dependencies": { - "typed-vuex": "0.1.22", + "typed-vuex": "0.2.0", "upath": "^2.0.1" }, "devDependencies": { diff --git a/packages/typed-vuex/package.json b/packages/typed-vuex/package.json index 4dacf767..f3e6c056 100644 --- a/packages/typed-vuex/package.json +++ b/packages/typed-vuex/package.json @@ -1,6 +1,6 @@ { "name": "typed-vuex", - "version": "0.1.22", + "version": "0.2.0", "description": "A typed store accessor for Vuex.", "keywords": [ "vuex",