From 72d0a000fee2aaf89d6017902c8bc9328752045e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 9 Nov 2023 23:33:43 +0000 Subject: [PATCH] chore: bump versions (next) --- .changeset/pre.json | 6 +++--- packages/background/CHANGELOG.md | 7 +++++++ packages/background/package.json | 4 ++-- packages/controls/CHANGELOG.md | 7 +++++++ packages/controls/package.json | 4 ++-- packages/core/CHANGELOG.md | 10 ++++++++++ packages/core/package.json | 2 +- packages/minimap/CHANGELOG.md | 7 +++++++ packages/minimap/package.json | 4 ++-- packages/node-resizer/CHANGELOG.md | 7 +++++++ packages/node-resizer/package.json | 4 ++-- packages/node-toolbar/CHANGELOG.md | 7 +++++++ packages/node-toolbar/package.json | 4 ++-- packages/pathfinding-edge/CHANGELOG.md | 7 +++++++ packages/pathfinding-edge/package.json | 4 ++-- 15 files changed, 68 insertions(+), 16 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index fac142e7f..005c2cd43 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -20,8 +20,8 @@ "@tooling/vite-config": "0.0.0" }, "changesets": [ - "cyan-melons-unite.md", - "fluffy-pans-boil.md", - "hip-melons-peel.md" + "cyan-melons-unite", + "fluffy-pans-boil", + "hip-melons-peel" ] } diff --git a/packages/background/CHANGELOG.md b/packages/background/CHANGELOG.md index 9b725077d..cc65f0296 100644 --- a/packages/background/CHANGELOG.md +++ b/packages/background/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/background +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.2.0 ### Minor Changes diff --git a/packages/background/package.json b/packages/background/package.json index 9d5ce05fa..483990183 100644 --- a/packages/background/package.json +++ b/packages/background/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/background", - "version": "1.2.0", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -56,7 +56,7 @@ "test": "exit 0" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "devDependencies": { diff --git a/packages/controls/CHANGELOG.md b/packages/controls/CHANGELOG.md index a25c23158..cddd86572 100644 --- a/packages/controls/CHANGELOG.md +++ b/packages/controls/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/controls +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.1.0 ### Minor Changes diff --git a/packages/controls/package.json b/packages/controls/package.json index ad9748c54..849f6489a 100644 --- a/packages/controls/package.json +++ b/packages/controls/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/controls", - "version": "1.1.0", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -59,7 +59,7 @@ "test": "exit 0" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "devDependencies": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 2ffcfa8f4..272265329 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,15 @@ # @vue-flow/core +## 2.0.0-next.0 + +### Major Changes + +- [#363](https://github.com/bcakmakoglu/vue-flow/pull/363) [`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove experimental features flag + +- [#363](https://github.com/bcakmakoglu/vue-flow/pull/363) [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Use `GraphNode` or `GraphEdge` as optional generic types for `findNode` or `findEdge` actions + +- [#363](https://github.com/bcakmakoglu/vue-flow/pull/363) [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Update handle styles and avoid using fixed pixel positions to offset handle position and instead use transform to align handles + ## 1.25.3 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 032bf3543..2a7127eaa 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/core", - "version": "1.25.3", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", diff --git a/packages/minimap/CHANGELOG.md b/packages/minimap/CHANGELOG.md index 23c6b00a4..c26d7ae8f 100644 --- a/packages/minimap/CHANGELOG.md +++ b/packages/minimap/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/minimap +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.2.0 ### Minor Changes diff --git a/packages/minimap/package.json b/packages/minimap/package.json index 9e5542444..af791aa2a 100644 --- a/packages/minimap/package.json +++ b/packages/minimap/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/minimap", - "version": "1.2.0", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -57,7 +57,7 @@ "test": "exit 0" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "dependencies": { diff --git a/packages/node-resizer/CHANGELOG.md b/packages/node-resizer/CHANGELOG.md index 8e0461559..350803d48 100644 --- a/packages/node-resizer/CHANGELOG.md +++ b/packages/node-resizer/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/node-resizer +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.3.5 ### Patch Changes diff --git a/packages/node-resizer/package.json b/packages/node-resizer/package.json index 0b4fb078a..94b3bb4da 100644 --- a/packages/node-resizer/package.json +++ b/packages/node-resizer/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/node-resizer", - "version": "1.3.5", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -59,7 +59,7 @@ "test": "exit 0" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "dependencies": { diff --git a/packages/node-toolbar/CHANGELOG.md b/packages/node-toolbar/CHANGELOG.md index acefc9e4e..52d335ea6 100644 --- a/packages/node-toolbar/CHANGELOG.md +++ b/packages/node-toolbar/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/node-toolbar +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.1.0 ### Minor Changes diff --git a/packages/node-toolbar/package.json b/packages/node-toolbar/package.json index 00efd8951..5168dd282 100644 --- a/packages/node-toolbar/package.json +++ b/packages/node-toolbar/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/node-toolbar", - "version": "1.1.0", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -40,7 +40,7 @@ "test": "exit 0" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "devDependencies": { diff --git a/packages/pathfinding-edge/CHANGELOG.md b/packages/pathfinding-edge/CHANGELOG.md index 73d24a0aa..b2804ac94 100644 --- a/packages/pathfinding-edge/CHANGELOG.md +++ b/packages/pathfinding-edge/CHANGELOG.md @@ -1,5 +1,12 @@ # @vue-flow/pathfinding-edge +## 2.0.0-next.0 + +### Patch Changes + +- Updated dependencies [[`c89190c`](https://github.com/bcakmakoglu/vue-flow/commit/c89190cc1cc690db1b0a97e8c195464b21c3226f), [`8e4ef50`](https://github.com/bcakmakoglu/vue-flow/commit/8e4ef50c21a7c21ce9e0bf786b0d9457faeea616), [`fccea17`](https://github.com/bcakmakoglu/vue-flow/commit/fccea178688550ee95044266079604227fd0ef6f)]: + - @vue-flow/core@2.0.0-next.0 + ## 1.0.6 ### Patch Changes diff --git a/packages/pathfinding-edge/package.json b/packages/pathfinding-edge/package.json index 20e133fed..9c10e7e22 100644 --- a/packages/pathfinding-edge/package.json +++ b/packages/pathfinding-edge/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/pathfinding-edge", - "version": "1.0.6", + "version": "2.0.0-next.0", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>", @@ -56,7 +56,7 @@ "lint:dist": "eslint --ext \".ts,.tsx\" -c .eslintrc.js --fix --ignore-pattern !**/* ./dist" }, "peerDependencies": { - "@vue-flow/core": "^1.23.0", + "@vue-flow/core": "^2.0.0-next.0", "vue": "^3.3.0" }, "dependencies": {