Skip to content

Commit eec2107

Browse files
committed
chore: fix release script
1 parent 556292d commit eec2107

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.0.0-beta.8"></a>
2+
# [1.0.0-beta.8](https://github.com/vuejs/composition-api/compare/v1.0.0-beta.7...v1.0.0-beta.8) (2020-08-07)
3+
4+
5+
### Bug Fixes
6+
7+
* SSR renderComponent computed error, [#464](https://github.com/vuejs/composition-api/issues/464) ([#465](https://github.com/vuejs/composition-api/issues/465)) ([123e60e](https://github.com/vuejs/composition-api/commit/123e60e))
8+
9+
10+
111
<a name="1.0.0-beta.6"></a>
212
# [1.0.0-beta.6](https://github.com/vuejs/composition-api/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2020-07-22)
313

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Include `@vue/composition-api` after Vue and it will install itself automaticall
4040
<!--cdn-links-start-->
4141
```html
4242
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
43-
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].6"></script>
43+
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].8"></script>
4444
```
4545
<!--cdn-links-end-->
4646

README.zh-CN.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@ import { ref, reactive } from '@vue/composition-api'
3838
在 Vue 之后引入 `@vue/composition-api` ,插件将会自动完成安装。
3939

4040
<!--cdn-links-start-->
41-
4241
```html
4342
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
44-
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].6"></script>
43+
<script src="https://cdn.jsdelivr.net/npm/@vue/[email protected].8"></script>
4544
```
46-
4745
<!--cdn-links-end-->
4846

4947
`@vue/composition-api` 将会暴露在全局变量 `window.VueCompositionAPI` 中。

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"update-readme": "node ./scripts/update-readme.js",
3737
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
3838
"version": "yarn changelog && yarn update-readme && git add CHANGELOG.md README.*",
39-
"release": "yarn test && npx bumpp --tag --commit --push && yarn publish --non-interactive && yarn release-gh",
39+
"release": "yarn test && yarn publish && git push && yarn release-gh",
4040
"release-gh": "conventional-github-releaser -p angular"
4141
},
4242
"bugs": {

0 commit comments

Comments
 (0)