Skip to content

Commit

Permalink
Merge pull request #39 from crabnebula-dev/release
Browse files Browse the repository at this point in the history
Publish New Versions
  • Loading branch information
lucasfernog-crabnebula authored Oct 22, 2024
2 parents b513335 + ea1135b commit f85dee3
Show file tree
Hide file tree
Showing 11 changed files with 35 additions and 16 deletions.
9 changes: 0 additions & 9 deletions .changes/v2.md

This file was deleted.

4 changes: 4 additions & 0 deletions crates/drag/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0]

- [`244887f`](https://github.com/crabnebula-dev/drag-rs/commit/244887fa36b12ac615919b9d2d149edca3d1f1c7) Update to tauri v2.

## \[0.4.0]

- [`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.
Expand Down
2 changes: 1 addition & 1 deletion crates/drag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "drag"
version = "1.0.0"
version = "2.0.0"
description = "Start a drag operation out of a window"
authors = [ "CrabNebula Ltd." ]
edition = { workspace = true }
Expand Down
8 changes: 8 additions & 0 deletions crates/tauri-plugin-drag-as-window/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.0.0]

- [`244887f`](https://github.com/crabnebula-dev/drag-rs/commit/244887fa36b12ac615919b9d2d149edca3d1f1c7) Update to tauri v2.

### Dependencies

- Upgraded to `[email protected]`

## \[0.1.1]

- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-plugin-drag-as-window/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-drag-as-window"
version = "1.0.0"
version = "2.0.0"
authors = [ "CrabNebula Ltd." ]
description = "Start a drag operation from a DOM element to its own window"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ tauri.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
drag = { path = "../drag", version = "1.0.0", features = [ "serde" ] }
drag = { path = "../drag", version = "2.0.0", features = [ "serde" ] }
base64.workspace = true
tempfile = "3"

Expand Down
8 changes: 8 additions & 0 deletions crates/tauri-plugin-drag/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## \[2.0.0]

- [`244887f`](https://github.com/crabnebula-dev/drag-rs/commit/244887fa36b12ac615919b9d2d149edca3d1f1c7) Update to tauri v2.

### Dependencies

- Upgraded to `[email protected]`

## \[0.3.1]

- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-plugin-drag/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-plugin-drag"
version = "1.0.0"
version = "2.0.0"
authors = [ "CrabNebula Ltd." ]
description = "Start a drag operation out of a Tauri window"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ tauri.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
drag = { path = "../drag", version = "1.0.0", features = [ "serde" ] }
drag = { path = "../drag", version = "2.0.0", features = [ "serde" ] }
base64.workspace = true

[build-dependencies]
Expand Down
4 changes: 4 additions & 0 deletions packages/tauri-plugin-drag-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0]

- [`244887f`](https://github.com/crabnebula-dev/drag-rs/commit/244887fa36b12ac615919b9d2d149edca3d1f1c7) Update to tauri v2.

## \[0.3.1]

- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.
Expand Down
2 changes: 1 addition & 1 deletion packages/tauri-plugin-drag-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crabnebula/tauri-plugin-drag",
"version": "1.0.0",
"version": "2.0.0",
"author": "Lucas <[email protected]>",
"description": "Start a drag operation out of a Tauri window",
"type": "module",
Expand Down
4 changes: 4 additions & 0 deletions packages/tauri-plugin-drag-as-window-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## \[2.0.0]

- [`244887f`](https://github.com/crabnebula-dev/drag-rs/commit/244887fa36b12ac615919b9d2d149edca3d1f1c7) Update to tauri v2.

## \[0.1.1]

- [`6698e65`](https://github.com/crabnebula-dev/drag-rs/commit/6698e655215e649d8a40d4c8d6d328ca595ce2d8) Target ES2019 for macOS 10.14 compatibility.
Expand Down
2 changes: 1 addition & 1 deletion packages/tauri-plugin-drag-as-window-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crabnebula/tauri-plugin-drag-as-window",
"version": "1.0.0",
"version": "2.0.0",
"author": "Lucas <[email protected]>",
"description": "Start a drag operation from a DOM element to its own window",
"type": "module",
Expand Down

0 comments on commit f85dee3

Please sign in to comment.