Skip to content

Commit 002d442

Browse files
yyx990803zhangzhonghe
authored andcommitted
release: v3.3.0-alpha.4
1 parent 0afa252 commit 002d442

File tree

20 files changed

+81
-72
lines changed

20 files changed

+81
-72
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# [3.3.0-alpha.4](https://github.com/vuejs/core/compare/v3.3.0-alpha.3...v3.3.0-alpha.4) (2023-02-06)
2+
3+
4+
### Bug Fixes
5+
6+
* **build:** fix const enum w/ number values ([92bb189](https://github.com/vuejs/core/commit/92bb189ca7ecae221ebf5411da87c715780d2de3))
7+
8+
9+
110
# [3.3.0-alpha.3](https://github.com/vuejs/core/compare/v3.3.0-alpha.2...v3.3.0-alpha.3) (2023-02-06)
211

312

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"packageManager": "pnpm@7.26.0",
55
"type": "module",
66
"scripts": {

packages/compiler-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.3.0-alpha.3",
35+
"@vue/shared": "3.3.0-alpha.4",
3636
"@babel/parser": "^7.20.15",
3737
"estree-walker": "^2.0.2",
3838
"source-map": "^0.6.1"

packages/compiler-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.3.0-alpha.3",
41-
"@vue/compiler-core": "3.3.0-alpha.3"
40+
"@vue/shared": "3.3.0-alpha.4",
41+
"@vue/compiler-core": "3.3.0-alpha.4"
4242
}
4343
}

packages/compiler-sfc/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"module": "dist/compiler-sfc.esm-browser.js",
@@ -33,11 +33,11 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.20.15",
36-
"@vue/compiler-core": "3.3.0-alpha.3",
37-
"@vue/compiler-dom": "3.3.0-alpha.3",
38-
"@vue/compiler-ssr": "3.3.0-alpha.3",
39-
"@vue/reactivity-transform": "3.3.0-alpha.3",
40-
"@vue/shared": "3.3.0-alpha.3",
36+
"@vue/compiler-core": "3.3.0-alpha.4",
37+
"@vue/compiler-dom": "3.3.0-alpha.4",
38+
"@vue/compiler-ssr": "3.3.0-alpha.4",
39+
"@vue/reactivity-transform": "3.3.0-alpha.4",
40+
"@vue/shared": "3.3.0-alpha.4",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.27.0",
4343
"source-map": "^0.6.1",

packages/compiler-ssr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/compiler-ssr",
55
"main": "dist/compiler-ssr.cjs.js",
66
"types": "dist/compiler-ssr.d.ts",
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
3030
"dependencies": {
31-
"@vue/shared": "3.3.0-alpha.3",
32-
"@vue/compiler-dom": "3.3.0-alpha.3"
31+
"@vue/shared": "3.3.0-alpha.4",
32+
"@vue/compiler-dom": "3.3.0-alpha.4"
3333
}
3434
}

packages/dts-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"dependencies": {
55
"vue": "workspace:*"
66
},
7-
"version": "3.3.0-alpha.3"
7+
"version": "3.3.0-alpha.4"
88
}

packages/reactivity-transform/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity-transform",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/reactivity-transform",
55
"main": "dist/reactivity-transform.cjs.js",
66
"files": [
@@ -29,8 +29,8 @@
2929
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
3030
"dependencies": {
3131
"@babel/parser": "^7.20.15",
32-
"@vue/compiler-core": "3.3.0-alpha.3",
33-
"@vue/shared": "3.3.0-alpha.3",
32+
"@vue/compiler-core": "3.3.0-alpha.4",
33+
"@vue/shared": "3.3.0-alpha.4",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.27.0"
3636
},

packages/reactivity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -36,6 +36,6 @@
3636
},
3737
"homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.3.0-alpha.3"
39+
"@vue/shared": "3.3.0-alpha.4"
4040
}
4141
}

packages/runtime-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.3.0-alpha.3",
3+
"version": "3.3.0-alpha.4",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.3.0-alpha.3",
36-
"@vue/reactivity": "3.3.0-alpha.3"
35+
"@vue/shared": "3.3.0-alpha.4",
36+
"@vue/reactivity": "3.3.0-alpha.4"
3737
}
3838
}

0 commit comments

Comments
 (0)