Skip to content

Commit 85635a2

Browse files
publish new versions (#2643)
Co-authored-by: FabianLars <30730186+FabianLars@users.noreply.github.com>
1 parent 848e703 commit 85635a2

38 files changed

+132
-105
lines changed

.changes/deep-link-android-pattern.md

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

.changes/deep-link-android-scheme.md

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

.changes/fix-macos-cwd-single-instance.md

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

.changes/fs-watch-cleanup.md

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

.changes/global-hotkey-07.md

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

.changes/http-fix-204.md

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

.changes/opener-url-type.md

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

.changes/opener-windows-0.61.md

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

Cargo.lock

Lines changed: 9 additions & 9 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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## \[2.0.22]
4+
5+
### Dependencies
6+
7+
- Upgraded to `fs-js@2.3.0`
8+
- Upgraded to `global-shortcut-js@2.2.1`
9+
- Upgraded to `http-js@2.4.4`
10+
- Upgraded to `opener-js@2.2.7`
11+
- Upgraded to `dialog-js@2.2.2`
12+
313
## \[2.0.21]
414

515
### Dependencies

examples/api/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.21",
4+
"version": "2.0.22",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -15,15 +15,15 @@
1515
"@tauri-apps/plugin-biometric": "^2.2.1",
1616
"@tauri-apps/plugin-cli": "^2.2.0",
1717
"@tauri-apps/plugin-clipboard-manager": "^2.2.2",
18-
"@tauri-apps/plugin-dialog": "^2.2.1",
19-
"@tauri-apps/plugin-fs": "^2.2.1",
18+
"@tauri-apps/plugin-dialog": "^2.2.2",
19+
"@tauri-apps/plugin-fs": "^2.3.0",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
21-
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
21+
"@tauri-apps/plugin-global-shortcut": "^2.2.1",
2222
"@tauri-apps/plugin-haptics": "^2.2.0",
23-
"@tauri-apps/plugin-http": "^2.4.3",
23+
"@tauri-apps/plugin-http": "^2.4.4",
2424
"@tauri-apps/plugin-nfc": "^2.2.0",
2525
"@tauri-apps/plugin-notification": "^2.2.2",
26-
"@tauri-apps/plugin-opener": "^2.2.6",
26+
"@tauri-apps/plugin-opener": "^2.2.7",
2727
"@tauri-apps/plugin-os": "^2.2.1",
2828
"@tauri-apps/plugin-process": "^2.2.1",
2929
"@tauri-apps/plugin-shell": "^2.2.1",

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.26]
4+
5+
### Dependencies
6+
7+
- Upgraded to `fs@2.3.0`
8+
- Upgraded to `global-shortcut@2.2.1`
9+
- Upgraded to `http@2.4.4`
10+
- Upgraded to `opener@2.2.7`
11+
- Upgraded to `dialog@2.2.2`
12+
313
## \[2.0.25]
414

515
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 6 additions & 6 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.25"
4+
version = "2.0.26"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -21,21 +21,21 @@ tiny_http = "0.12"
2121
time = "0.3"
2222
log = { workspace = true }
2323
tauri-plugin-log = { path = "../../../plugins/log", version = "2.4.0" }
24-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.2.1", features = [
24+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.3.0", features = [
2525
"watch",
2626
] }
2727
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.2" }
28-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.1" }
28+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.2" }
2929
tauri-plugin-http = { path = "../../../plugins/http", features = [
3030
"multipart",
3131
"cookies",
32-
], version = "2.4.3" }
32+
], version = "2.4.4" }
3333
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.2", features = [
3434
"windows7-compat",
3535
] }
3636
tauri-plugin-os = { path = "../../../plugins/os", version = "2.2.1" }
3737
tauri-plugin-process = { path = "../../../plugins/process", version = "2.2.1" }
38-
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.6" }
38+
tauri-plugin-opener = { path = "../../../plugins/opener", version = "2.2.7" }
3939
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.2.1" }
4040
tauri-plugin-store = { path = "../../../plugins/store", version = "2.2.0" }
4141

@@ -54,7 +54,7 @@ features = [
5454

5555
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5656
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.0" }
57-
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.0" }
57+
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.1" }
5858
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.7.1" }
5959
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
6060

plugins/deep-link/CHANGELOG.md

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

3+
## \[2.3.0]
4+
5+
- [`4d10acee`](https://github.com/tauri-apps/plugins-workspace/commit/4d10acee61bad8045705508121424ed5f2d381f6) ([#993](https://github.com/tauri-apps/plugins-workspace/pull/993) by [@m00nwtchr](https://github.com/tauri-apps/plugins-workspace/../../m00nwtchr)) Exposed Android's `path`, `pathPattern` and `pathSuffix` configurations.
6+
- [`4d10acee`](https://github.com/tauri-apps/plugins-workspace/commit/4d10acee61bad8045705508121424ed5f2d381f6) ([#993](https://github.com/tauri-apps/plugins-workspace/pull/993) by [@m00nwtchr](https://github.com/tauri-apps/plugins-workspace/../../m00nwtchr)) Added a `scheme` configuration to set a scheme other than http/https. This is only supported on Android and will still default to http,https if not set.
7+
38
## \[2.2.1]
49

510
### bug

plugins/deep-link/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-deep-link"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
description = "Set your Tauri application as the default handler for an URL"
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/deep-link/examples/app/CHANGELOG.md

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

3+
## \[2.2.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `deep-link-js@2.3.0`
8+
39
## \[2.2.1]
410

511
### Dependencies

plugins/deep-link/examples/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deep-link-example",
33
"private": true,
4-
"version": "2.2.1",
4+
"version": "2.2.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"@tauri-apps/api": "2.5.0",
14-
"@tauri-apps/plugin-deep-link": "2.2.1"
14+
"@tauri-apps/plugin-deep-link": "2.3.0"
1515
},
1616
"devDependencies": {
1717
"@tauri-apps/cli": "2.5.0",

plugins/deep-link/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-deep-link",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "Set your Tauri application as the default handler for an URL",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

plugins/dialog/CHANGELOG.md

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

3+
## \[2.2.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `fs-js@2.3.0`
8+
39
## \[2.2.1]
410

511
### Dependencies

plugins/dialog/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-dialog"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application."
55
edition = { workspace = true }
66
authors = { workspace = true }
@@ -34,7 +34,7 @@ tauri = { workspace = true }
3434
log = { workspace = true }
3535
thiserror = { workspace = true }
3636
url = { workspace = true }
37-
tauri-plugin-fs = { path = "../fs", version = "2.2.1" }
37+
tauri-plugin-fs = { path = "../fs", version = "2.3.0" }
3838

3939
[target.'cfg(target_os = "ios")'.dependencies]
4040
tauri = { workspace = true, features = ["wry"] }

plugins/dialog/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-dialog",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/fs/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.3.0]
4+
5+
- [`dac4d537`](https://github.com/tauri-apps/plugins-workspace/commit/dac4d53724bb3430a00a3f0119857cba32a031e8) ([#2613](https://github.com/tauri-apps/plugins-workspace/pull/2613) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Reduce the overhead of `watch` and `unwatch`
6+
37
## \[2.2.1]
48

59
### bug

plugins/fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-fs"
3-
version = "2.2.1"
3+
version = "2.3.0"
44
description = "Access the file system."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/fs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-fs",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "Access the file system.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

plugins/global-shortcut/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.2.1]
4+
5+
- [`494d1fea`](https://github.com/tauri-apps/plugins-workspace/commit/494d1fea137ffd60da98b25305c9d666df62cc63) ([#2684](https://github.com/tauri-apps/plugins-workspace/pull/2684) by [@renovate](https://github.com/tauri-apps/plugins-workspace/../../renovate)) Updated `global-hotkey` crate to `0.7` to fix a panic when trying to register a key combination which was already registered by another program. No API changes.
6+
37
## \[2.2.0]
48

59
- [`3a79266b`](https://github.com/tauri-apps/plugins-workspace/commit/3a79266b8cf96a55b1ae6339d725567d45a44b1d) ([#2173](https://github.com/tauri-apps/plugins-workspace/pull/2173) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Bumped all plugins to `v2.2.0`. From now, the versions for the Rust and JavaScript packages of each plugin will be in sync with each other.

plugins/global-shortcut/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-global-shortcut"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "Register global hotkeys listeners on your Tauri application."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/global-shortcut/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-global-shortcut",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

0 commit comments

Comments
 (0)