Skip to content

Commit 0eb2203

Browse files
committed
build: release version 0.6.0
1 parent d747722 commit 0eb2203

File tree

22 files changed

+194
-29
lines changed

22 files changed

+194
-29
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **lib:** 修复 anyOf 类型,编辑时不能匹配正确选项 ([d747722](https://github.com/lljj-x/vue-json-schema-form/commit/d7477227d004e47c2b186c3eb956e4c83d7077ad)), closes [#31](https://github.com/lljj-x/vue-json-schema-form/issues/31)
12+
* **lib:** 解决打包后包含es6代码问题 ([f03352e](https://github.com/lljj-x/vue-json-schema-form/commit/f03352eb129c45963ad41e3e91eebe102c303913)), closes [#29](https://github.com/lljj-x/vue-json-schema-form/issues/29)
13+
14+
15+
### Features
16+
17+
* **iview3:** 适配iview3 footer btn ([b734ae0](https://github.com/lljj-x/vue-json-schema-form/commit/b734ae062bb21e82cfec59739de6de843d752b4c))
18+
* 添加初始化 iview ([f8b59ce](https://github.com/lljj-x/vue-json-schema-form/commit/f8b59ce6bcc3830c051f1aa823ad9c5d06cae61d))
19+
* **demo:** demo页面添加ui 框架切换 ([c3f76f7](https://github.com/lljj-x/vue-json-schema-form/commit/c3f76f7272be6f8132e467b130d6f230a048fb9b))
20+
* **iview:** 添加iview i-switch 组件转换 ([8fae70c](https://github.com/lljj-x/vue-json-schema-form/commit/8fae70cb28f7fd02073d6d4318861b7f08f6199b))
21+
* **iview3:** 适配 iview ([c969d97](https://github.com/lljj-x/vue-json-schema-form/commit/c969d97b6d908eabe8c1f60b8c3625b41fbb661a))
22+
* 适配iview3 upload 组件 ([16060af](https://github.com/lljj-x/vue-json-schema-form/commit/16060af6743c678b4c64e98d58f9503b817d3921))
23+
* **vue2-iview3:** 完成iview3时间选择和样式优化 ([27e310e](https://github.com/lljj-x/vue-json-schema-form/commit/27e310e298498ee5a2466f4d6c7d4153ad8b9777))
24+
* **vue2-iview3:** 适配 iview3 ([0120d2b](https://github.com/lljj-x/vue-json-schema-form/commit/0120d2b9a265cf0bffee099c2d4974c883c08a25)), closes [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27)
25+
* **vue3:** init vue3 core ([df2c1fe](https://github.com/lljj-x/vue-json-schema-form/commit/df2c1fe9873a5e13eeafff924f7d9ab369824fbd))
26+
* **vue3:** 完成 vue3 form组件 ([1c5deba](https://github.com/lljj-x/vue-json-schema-form/commit/1c5debae4cb92f3f54de64d8f38c98396022a344))
27+
* **vue3:** 更新vue3 form 组件 ([ab481d6](https://github.com/lljj-x/vue-json-schema-form/commit/ab481d675c4b84a29aa689b99d9d2f8f17fae86d))
28+
* **vue3-core:** 初始化vue3-core ([f22a51c](https://github.com/lljj-x/vue-json-schema-form/commit/f22a51cd732c21a244b770cbcae0f9ceb0156c57))
29+
* 适配 iview3 ([d4ee166](https://github.com/lljj-x/vue-json-schema-form/commit/d4ee166a7dd71bb9a840525f4eb15c4fdc97f11d))
30+
* 适配 iview3 ([2df6957](https://github.com/lljj-x/vue-json-schema-form/commit/2df69575b4ad2650c2e75863ffcf0c306e42f21e))
31+
* 适配iview 时间日期 ([0baa3cd](https://github.com/lljj-x/vue-json-schema-form/commit/0baa3cdfd22ac19191dfc8adddd7f0bdc3520bf0))
32+
33+
34+
35+
36+
637
# [0.5.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.4.1...v0.5.0) (2020-12-25)
738

839

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"command": {
66
"version": {
77
"allowBranch": "master",
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
7+
8+
9+
### Bug Fixes
10+
11+
* **lib:** 修复 anyOf 类型,编辑时不能匹配正确选项 ([d747722](https://github.com/lljj-x/vue-json-schema-form/commit/d7477227d004e47c2b186c3eb956e4c83d7077ad)), closes [#31](https://github.com/lljj-x/vue-json-schema-form/issues/31)

packages/demo/demo-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-common",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "vue json schema form demo公共代码",
55
"keywords": [
66
"@lljj/vjsf-utils",

packages/demo/demo-v2/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
7+
8+
9+
### Features
10+
11+
* 适配 iview3 ([d4ee166](https://github.com/lljj-x/vue-json-schema-form/commit/d4ee166a7dd71bb9a840525f4eb15c4fdc97f11d))
12+
* **vue2-iview3:** 适配 iview3 ([0120d2b](https://github.com/lljj-x/vue-json-schema-form/commit/0120d2b9a265cf0bffee099c2d4974c883c08a25)), closes [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27)
13+
14+
15+
16+
17+
618
# [0.5.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.4.1...v0.5.0) (2020-12-25)
719

820

packages/demo/demo-v2/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"scripts": {
@@ -10,13 +10,13 @@
1010
},
1111
"dependencies": {
1212
"@lljj/polyfill": "^0.1.0",
13-
"@lljj/vue2-form-iview3": "0.5.0",
14-
"@lljj/vue-json-schema-form": "0.5.0",
13+
"@lljj/vue-json-schema-form": "0.6.0",
14+
"@lljj/vue2-form-iview3": "0.6.0",
1515
"ajv-i18n": "^3.5.0",
16-
"vue": "^2.6.10",
17-
"vuedraggable": "2.23.2",
16+
"element-ui": "^2.14.1",
1817
"iview": "^3.5.4",
19-
"element-ui": "^2.14.1"
18+
"vue": "^2.6.10",
19+
"vuedraggable": "2.23.2"
2020
},
2121
"devDependencies": {
2222
"@lljj/babel-preset-app": "^0.0.1",

packages/demo/demo-v3/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
7+
8+
9+
### Features
10+
11+
* 适配 iview3 ([d4ee166](https://github.com/lljj-x/vue-json-schema-form/commit/d4ee166a7dd71bb9a840525f4eb15c4fdc97f11d))
12+
* **vue2-iview3:** 适配 iview3 ([0120d2b](https://github.com/lljj-x/vue-json-schema-form/commit/0120d2b9a265cf0bffee099c2d4974c883c08a25)), closes [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27)

packages/demo/demo-v3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "demo-v3",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"scripts": {
@@ -10,9 +10,9 @@
1010
},
1111
"dependencies": {
1212
"@lljj/polyfill": "^0.1.0",
13-
"@lljj/vue3-form-element": "0.5.0",
14-
"demo-common": "0.5.0",
13+
"@lljj/vue3-form-element": "0.6.0",
1514
"ajv-i18n": "^3.5.0",
15+
"demo-common": "0.6.0",
1616
"vue": "^3.0.0",
1717
"vuedraggable": "2.23.2"
1818
},

packages/docs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
7+
8+
9+
### Features
10+
11+
* **vue3:** init vue3 core ([df2c1fe](https://github.com/lljj-x/vue-json-schema-form/commit/df2c1fe9873a5e13eeafff924f7d9ab369824fbd))
12+
13+
14+
15+
16+
617
# [0.5.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.4.1...v0.5.0) (2020-12-25)
718

819

packages/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docs",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"private": true,
55
"license": "Apache-2.0",
66
"scripts": {
@@ -9,7 +9,7 @@
99
"build": "vuepress build docs"
1010
},
1111
"dependencies": {
12-
"@lljj/vue-json-schema-form": "0.5.0",
12+
"@lljj/vue-json-schema-form": "0.6.0",
1313
"element-ui": "^2.13.2",
1414
"v-distpicker": "^1.2.7"
1515
},

0 commit comments

Comments
 (0)