Skip to content

Commit fd24bf6

Browse files
authored
Merge pull request #344 from towersxu/master
release 0.7.2
2 parents efc1ad5 + aab48d4 commit fd24bf6

File tree

7 files changed

+32
-8
lines changed

7 files changed

+32
-8
lines changed

examples/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.7.11](https://github.com/didi/LogicFlow/compare/[email protected]@0.7.11) (2021-10-22)
7+
8+
**Note:** Version bump only for package examples
9+
10+
11+
12+
13+
614
## [0.7.10](https://github.com/didi/LogicFlow/compare/[email protected]@0.7.10) (2021-10-21)
715

816
**Note:** Version bump only for package examples

examples/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "examples",
3-
"version": "0.7.10",
3+
"version": "0.7.11",
44
"private": true,
55
"dependencies": {
66
"@ant-design/icons": "^4.3.0",
77
"@babel/core": "7.12.3",
8-
"@logicflow/core": "^0.7.1",
9-
"@logicflow/extension": "^0.7.1",
8+
"@logicflow/core": "^0.7.2",
9+
"@logicflow/extension": "^0.7.2",
1010
"@pmmmwh/react-refresh-webpack-plugin": "0.4.2",
1111
"@svgr/webpack": "5.4.0",
1212
"@testing-library/jest-dom": "^5.11.4",

packages/core/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/[email protected]...@logicflow/[email protected]) (2021-10-22)
7+
8+
**Note:** Version bump only for package @logicflow/core
9+
10+
11+
12+
13+
614
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/[email protected]...@logicflow/[email protected]) (2021-10-21)
715

816
**Note:** Version bump only for package @logicflow/core

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@logicflow/core",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "LogicFlow core, to quickly build flowchart editor",
55
"main": "dist/logic-flow.js",
66
"license": "Apache-2.0",

packages/core/src/model/edge/BaseEdgeModel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class BaseEdgeModel implements IBaseModel {
211211

212212
@action
213213
setProperties(properties): void {
214-
this.properties = Object.assign(this.properties, properties);
214+
Object.assign(this.properties, properties);
215215
}
216216

217217
/* 更新数据 */
@@ -308,7 +308,7 @@ class BaseEdgeModel implements IBaseModel {
308308
@action
309309
setText(textConfig): void {
310310
if (textConfig) {
311-
this.text = assign(this.text, textConfig);
311+
assign(this.text, textConfig);
312312
}
313313
}
314314

packages/extension/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.7.2](https://github.com/didi/LogicFlow/compare/@logicflow/[email protected]...@logicflow/[email protected]) (2021-10-22)
7+
8+
**Note:** Version bump only for package @logicflow/extension
9+
10+
11+
12+
13+
614
## [0.7.1](https://github.com/didi/LogicFlow/compare/@logicflow/[email protected]...@logicflow/[email protected]) (2021-10-21)
715

816
**Note:** Version bump only for package @logicflow/extension

packages/extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@logicflow/extension",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "LogicFlow extension",
55
"main": "cjs/index.js",
66
"module": "es/index.js",
@@ -26,7 +26,7 @@
2626
"readme.md"
2727
],
2828
"dependencies": {
29-
"@logicflow/core": "^0.7.1",
29+
"@logicflow/core": "^0.7.2",
3030
"ids": "^1.0.0",
3131
"preact": "^10.4.8"
3232
},

0 commit comments

Comments
 (0)