Skip to content

Commit 10241d8

Browse files
committed
release: vue-class-setup@1.3.0
1 parent c452343 commit 10241d8

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0
2+
3+
- Same as `1.2.9`
4+
15
## 1.2.9
26

37
- feat: `Context` Support props and emit generics

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-class-setup",
3-
"version": "1.2.8-beta2",
3+
"version": "1.3.0",
44
"main": "dist/index.cjs.js",
55
"module": "dist/index.es.js",
66
"types": "dist/index.d.ts",

script/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#! /bin/bash
22
set -e
3-
version=v`node -e "console.log(require('./package.json').version)"`
3+
version=`node -e "console.log(require('./package.json').version)"`
44

55
npm publish --registry=https://registry.npmjs.org
66

77
git add .
88
git commit -m "release: vue-class-setup@$version"
99
git push
10-
git tag $version
11-
git push origin $version
10+
git tag v$version
11+
git push origin v$version

0 commit comments

Comments
 (0)