Skip to content

Commit acdd80f

Browse files
Publish New Versions (#64)
# Version Updates Merging this PR will release new versions of the following packages based on your change files. # drag ## [0.4.1] - [`b32dc37`](https://github.com/crabnebula-dev/drag-rs/commit/b32dc37910345253a6ab27d9fdf451697d5b1737)([#57](https://github.com/crabnebula-dev/drag-rs/pull/57)) Fix crash on macOS systems running Intel or older macOS releases. # tauri-plugin-drag ## [0.3.2] ### Dependencies - Upgraded to `[email protected]` # tauri-plugin-drag-as-window ## [0.1.2] ### Dependencies - Upgraded to `[email protected]` Co-authored-by: lucasfernog-crabnebula <[email protected]>
1 parent b32dc37 commit acdd80f

File tree

7 files changed

+21
-10
lines changed

7 files changed

+21
-10
lines changed

.changes/fix-drag-crash-intel.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

crates/drag/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## \[0.4.1]
4+
5+
- [`b32dc37`](https://github.com/crabnebula-dev/drag-rs/commit/b32dc37910345253a6ab27d9fdf451697d5b1737)([#57](https://github.com/crabnebula-dev/drag-rs/pull/57)) Fix crash on macOS systems running Intel or older macOS releases.
6+
37
## \[0.4.0]
48

59
- [`639e0fd`](https://github.com/crabnebula-dev/drag-rs/commit/639e0fd801109d88007d0aeafe04367cdc251eb7) Added the cursor position of the drop event as the `start_drag` callback closure second argument.

crates/drag/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "drag"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
description = "Start a drag operation out of a window"
55
authors = [ "CrabNebula Ltd." ]
66
edition = { workspace = true }

crates/tauri-plugin-drag-as-window/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[0.1.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[0.1.1]
410

511
- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.

crates/tauri-plugin-drag-as-window/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-drag-as-window"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = [ "CrabNebula Ltd." ]
55
description = "Start a drag operation from a DOM element to its own window"
66
edition = "2021"
@@ -12,7 +12,7 @@ tauri = "1"
1212
serde = "1"
1313
serde_json = "1"
1414
thiserror = "1"
15-
drag = { path = "../drag", version = "0.4.0", features = [ "serde" ] }
15+
drag = { path = "../drag", version = "0.4.1", features = [ "serde" ] }
1616
base64 = "0.21"
1717
tempfile = "3"
1818

crates/tauri-plugin-drag/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[0.3.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[0.3.1]
410

511
- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.

crates/tauri-plugin-drag/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-drag"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
authors = [ "CrabNebula Ltd." ]
55
description = "Start a drag operation out of a Tauri window"
66
edition = "2021"
@@ -12,5 +12,5 @@ tauri = "1"
1212
serde = "1"
1313
serde_json = "1"
1414
thiserror = "1"
15-
drag = { path = "../drag", version = "0.4.0", features = [ "serde" ] }
15+
drag = { path = "../drag", version = "0.4.1", features = [ "serde" ] }
1616
base64 = "0.21"

0 commit comments

Comments
 (0)