diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a62b9b4e..921023bff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.38](https://github.com/antvis/f2/compare/v5.0.37...v5.0.38) (2023-11-26) + + +### Bug Fixes + +* 修复 dodge 平移显示问题 ([#1895](https://github.com/antvis/f2/issues/1895)) ([07ea4fe](https://github.com/antvis/f2/commit/07ea4fe2bb53f76cdea2db6bc7908f6a6c491f2e)) + + + + + ## [5.0.37](https://github.com/antvis/f2/compare/v5.0.36...v5.0.37) (2023-11-24) diff --git a/lerna.json b/lerna.json index b49e3005c..2627a82ba 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "5.0.37", + "version": "5.0.38", "command": { "bootstrap": { "ci": false, diff --git a/packages/f2-algorithm/CHANGELOG.md b/packages/f2-algorithm/CHANGELOG.md index 0249d779b..b1269b098 100644 --- a/packages/f2-algorithm/CHANGELOG.md +++ b/packages/f2-algorithm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.38](https://github.com/antvis/f2/compare/v5.0.37...v5.0.38) (2023-11-26) + +**Note:** Version bump only for package @antv/f2-algorithm + + + + + ## [5.0.37](https://github.com/antvis/f2/compare/v5.0.36...v5.0.37) (2023-11-24) **Note:** Version bump only for package @antv/f2-algorithm diff --git a/packages/f2-algorithm/package.json b/packages/f2-algorithm/package.json index 8b528d5b4..98ebd7590 100644 --- a/packages/f2-algorithm/package.json +++ b/packages/f2-algorithm/package.json @@ -1,6 +1,6 @@ { "name": "@antv/f2-algorithm", - "version": "5.0.37", + "version": "5.0.38", "description": "F2 algorithm extension", "main": "lib/index.js", "module": "es/index.js", @@ -22,7 +22,7 @@ }, "devDependencies": { "@antv/f-test-utils": "^1.0.1", - "@antv/f2": "5.0.37", + "@antv/f2": "5.0.38", "jest-mock-random": "~1.1.1" }, "homepage": "https://f2.antv.vision/zh/", diff --git a/packages/f2-react/CHANGELOG.md b/packages/f2-react/CHANGELOG.md index f64399639..7203fc543 100644 --- a/packages/f2-react/CHANGELOG.md +++ b/packages/f2-react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.38](https://github.com/antvis/f2/compare/v5.0.37...v5.0.38) (2023-11-26) + +**Note:** Version bump only for package @antv/f2-react + + + + + ## [5.0.37](https://github.com/antvis/f2/compare/v5.0.36...v5.0.37) (2023-11-24) **Note:** Version bump only for package @antv/f2-react diff --git a/packages/f2-react/package.json b/packages/f2-react/package.json index 25b8bc428..1ec9abbfd 100644 --- a/packages/f2-react/package.json +++ b/packages/f2-react/package.json @@ -1,6 +1,6 @@ { "name": "@antv/f2-react", - "version": "5.0.37", + "version": "5.0.38", "description": "F2 for React", "main": "lib/index.js", "module": "es/index.js", @@ -17,7 +17,7 @@ ], "dependencies": { "@antv/f-react": "^1.0.1", - "@antv/f2": "5.0.37", + "@antv/f2": "5.0.38", "@babel/runtime": "^7.12.5", "tslib": "^2.3.1" }, diff --git a/packages/f2-wordcloud/CHANGELOG.md b/packages/f2-wordcloud/CHANGELOG.md index 488bd88a5..a733266b0 100644 --- a/packages/f2-wordcloud/CHANGELOG.md +++ b/packages/f2-wordcloud/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.38](https://github.com/antvis/f2/compare/v5.0.37...v5.0.38) (2023-11-26) + +**Note:** Version bump only for package @antv/f2-wordcloud + + + + + ## [5.0.37](https://github.com/antvis/f2/compare/v5.0.36...v5.0.37) (2023-11-24) **Note:** Version bump only for package @antv/f2-wordcloud diff --git a/packages/f2-wordcloud/package.json b/packages/f2-wordcloud/package.json index f0b691e68..0b19d9a38 100644 --- a/packages/f2-wordcloud/package.json +++ b/packages/f2-wordcloud/package.json @@ -1,6 +1,6 @@ { "name": "@antv/f2-wordcloud", - "version": "5.0.37", + "version": "5.0.38", "description": "F2 wordcloud extension", "main": "lib/index.js", "module": "es/index.js", @@ -17,7 +17,7 @@ "wordcloud" ], "dependencies": { - "@antv/f2": "5.0.37", + "@antv/f2": "5.0.38", "@antv/util": "~3.3.0", "@babel/runtime": "^7.12.5", "tslib": "^2.3.1" diff --git a/packages/f2/CHANGELOG.md b/packages/f2/CHANGELOG.md index 05e9b580c..23af42ec7 100644 --- a/packages/f2/CHANGELOG.md +++ b/packages/f2/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.0.38](https://github.com/antvis/f2/compare/v5.0.37...v5.0.38) (2023-11-26) + + +### Bug Fixes + +* 修复 dodge 平移显示问题 ([#1895](https://github.com/antvis/f2/issues/1895)) ([07ea4fe](https://github.com/antvis/f2/commit/07ea4fe2bb53f76cdea2db6bc7908f6a6c491f2e)) + + + + + ## [5.0.37](https://github.com/antvis/f2/compare/v5.0.36...v5.0.37) (2023-11-24) diff --git a/packages/f2/package.json b/packages/f2/package.json index 021f29d3c..8324782cd 100644 --- a/packages/f2/package.json +++ b/packages/f2/package.json @@ -1,6 +1,6 @@ { "name": "@antv/f2", - "version": "5.0.37", + "version": "5.0.38", "description": "Charts for mobile visualization.", "keywords": [ "antv",