Skip to content

Commit 777c560

Browse files
publish new versions
1 parent 67a7bf8 commit 777c560

26 files changed

+71
-52
lines changed

.changes/deep-link-fix-different-exec.md

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

.changes/geolocation-android-timeout.md

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

.changes/opener-same-origin-link.md

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

.changes/updater-new-bundle-support.md

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

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/CHANGELOG.md

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

3+
## \[2.0.33]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.32]
411

512
### Dependencies

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.32",
4+
"version": "2.0.33",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -23,12 +23,12 @@
2323
"@tauri-apps/plugin-http": "^2.5.2",
2424
"@tauri-apps/plugin-nfc": "^2.3.1",
2525
"@tauri-apps/plugin-notification": "^2.3.1",
26-
"@tauri-apps/plugin-opener": "^2.5.0",
26+
"@tauri-apps/plugin-opener": "^2.5.1",
2727
"@tauri-apps/plugin-os": "^2.3.1",
2828
"@tauri-apps/plugin-process": "^2.3.0",
2929
"@tauri-apps/plugin-shell": "^2.3.1",
3030
"@tauri-apps/plugin-store": "^2.4.0",
31-
"@tauri-apps/plugin-updater": "^2.9.0",
31+
"@tauri-apps/plugin-updater": "^2.10.0",
3232
"@tauri-apps/plugin-upload": "^2.3.0",
3333
"@zerodevx/svelte-json-view": "1.0.11"
3434
},

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.37]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.36]
412

513
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "api"
33
publish = false
4-
version = "2.0.36"
4+
version = "2.0.37"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -35,7 +35,7 @@ tauri-plugin-notification = { path = "../../../plugins/notification", version =
3535
] }
3636
tauri-plugin-os = { path = "../../../plugins/os", version = "2.3.1" }
3737
tauri-plugin-process = { path = "../../../plugins/process", version = "2.3.0" }
38-
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.5.0" }
38+
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.5.1" }
3939
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.3.1" }
4040
tauri-plugin-store = { path = "../../../plugins/store", version = "2.4.0" }
4141
tauri-plugin-upload = { path = "../../../plugins/upload", version = "2.3.0" }
@@ -57,14 +57,14 @@ features = [
5757
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5858
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.4.0" }
5959
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.3.0" }
60-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.9.0" }
60+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.10.0" }
6161
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
6262

6363
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
6464
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.4.0" }
6565
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.3.1" }
6666
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.3.0" }
67-
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.0" }
67+
tauri-plugin-geolocation = { path = "../../../plugins/geolocation/", version = "2.3.1" }
6868
tauri-plugin-haptics = { path = "../../../plugins/haptics/", version = "2.3.0" }
6969

7070
[features]

plugins/deep-link/CHANGELOG.md

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

3+
## \[2.4.4]
4+
5+
- [`e25a9339`](https://github.com/tauri-apps/plugins-workspace/commit/e25a9339f46268f70dc9afd0c5ab3decbf79b330) ([#3019](https://github.com/tauri-apps/plugins-workspace/pull/3019)) Fix Exec= field in desktop handler if executable path changes
6+
37
## \[2.4.3]
48

59
- [`2522b71f`](https://github.com/tauri-apps/plugins-workspace/commit/2522b71f6bcae65c03b24415eb9295c9e7c84ffc) ([#2970](https://github.com/tauri-apps/plugins-workspace/pull/2970) by [@WSH032](https://github.com/tauri-apps/plugins-workspace/../../WSH032)) Revert the breaking change introduced by [#2928](https://github.com/tauri-apps/plugins-workspace/pull/2928).

0 commit comments

Comments
 (0)