diff --git a/CHANGELOG.md b/CHANGELOG.md index 198297ee..384cb35a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,48 @@ + +# [1.1.0-beta.5](https://github.com/vuejs/composition-api/compare/v1.0.5...v1.1.0-beta.5) (2021-08-01) + + + + +# [1.1.0-beta.4](https://github.com/vuejs/composition-api/compare/v1.0.4...v1.1.0-beta.4) (2021-07-22) + + +### Bug Fixes + +* revert module field to `esm.js` version, close [#769](https://github.com/vuejs/composition-api/issues/769) ([92afa6f](https://github.com/vuejs/composition-api/commit/92afa6f)) + + + + +# [1.1.0-beta.3](https://github.com/vuejs/composition-api/compare/v1.0.3...v1.1.0-beta.3) (2021-07-18) + + +### Bug Fixes + +* build for mjs and exports all submodules ([c116714](https://github.com/vuejs/composition-api/commit/c116714)) + + + + +# [1.1.0-beta.2](https://github.com/vuejs/composition-api/compare/v1.1.0-beta.1...v1.1.0-beta.2) (2021-07-16) + + +### Bug Fixes + +* **effectScope:** should stop along with parent component ([784d96c](https://github.com/vuejs/composition-api/commit/784d96c)) + + + + +# [1.1.0-beta.1](https://github.com/vuejs/composition-api/compare/v1.0.2...v1.1.0-beta.1) (2021-07-16) + + +### Features + +* implement `effectScope` api ([#762](https://github.com/vuejs/composition-api/issues/762)) ([fcadec2](https://github.com/vuejs/composition-api/commit/fcadec2)) + + + # [1.1.0-beta.4](https://github.com/vuejs/composition-api/compare/v1.1.0-beta.3...v1.1.0-beta.4) (2021-07-22) diff --git a/README.md b/README.md index baeb1c91..e92687d4 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Include `@vue/composition-api` after Vue and it will install itself automaticall ```html - + ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index cf8549f7..8c3da0f9 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -40,7 +40,7 @@ import { ref, reactive } from '@vue/composition-api' ```html - + ``` diff --git a/package.json b/package.json index 06206794..25690108 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vue/composition-api", - "version": "1.1.0-beta.4", + "version": "1.1.0-beta.5", "description": "Provide logic composition capabilities for Vue.", "keywords": [ "vue",