diff --git a/CHANGELOG.md b/CHANGELOG.md index 5836841219..8506bade24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [2.0.0-rc.4](https://github.com/posva/pinia/compare/v2.0.0-rc.3...v2.0.0-rc.4) (2021-08-09) + +If you are using Vue 2, make sure your `@vue/composition-api` version is at least `1.1.0`, which is currently under the npm dist tag `next`, which means it has to be installed with `npm install @vue/composition-api@next`. + +### Bug Fixes + +- **types:** unwrap computed in store getters ([35d4f59](https://github.com/posva/pinia/commit/35d4f591cf48166466f4d4e414de8063d55e3811)), closes [#602](https://github.com/posva/pinia/issues/602) [#603](https://github.com/posva/pinia/issues/603) + # [2.0.0-rc.3](https://github.com/posva/pinia/compare/v2.0.0-rc.2...v2.0.0-rc.3) (2021-08-05) ### Bug Fixes diff --git a/package.json b/package.json index ad0c5f8b1f..e38b178b78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pinia", - "version": "2.0.0-rc.3", + "version": "2.0.0-rc.4", "description": "Intuitive, type safe and flexible Store for Vue", "main": "dist/pinia.cjs.js", "module": "dist/pinia.esm-bundler.js",