Skip to content

Commit 0a04634

Browse files
authored
publish new versions
1 parent aef5dd6 commit 0a04634

22 files changed

+69
-59
lines changed

.changes/fix-android-mime-type.md

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

.changes/fix-handleIconState.md

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

.changes/http-headers-order.md

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

.changes/shell-open-hang-windows.md

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

Cargo.lock

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

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

513
- [`e2c4dfb6`](https://github.com/tauri-apps/plugins-workspace/commit/e2c4dfb6af43e5dd8d9ceba232c315f5febd55c1) Update to tauri v2 stable release.

examples/api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "svelte-app",
33
"private": true,
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -14,17 +14,17 @@
1414
"@tauri-apps/plugin-biometric": "2.0.0",
1515
"@tauri-apps/plugin-cli": "2.0.0",
1616
"@tauri-apps/plugin-clipboard-manager": "2.0.0",
17-
"@tauri-apps/plugin-dialog": "2.0.0",
17+
"@tauri-apps/plugin-dialog": "2.0.1",
1818
"@tauri-apps/plugin-fs": "2.0.0",
1919
"@tauri-apps/plugin-geolocation": "2.0.0",
2020
"@tauri-apps/plugin-global-shortcut": "2.0.0",
2121
"@tauri-apps/plugin-haptics": "2.0.0",
22-
"@tauri-apps/plugin-http": "2.0.0",
22+
"@tauri-apps/plugin-http": "2.0.1",
2323
"@tauri-apps/plugin-nfc": "2.0.0",
2424
"@tauri-apps/plugin-notification": "2.0.0",
2525
"@tauri-apps/plugin-os": "2.0.0",
2626
"@tauri-apps/plugin-process": "2.0.0",
27-
"@tauri-apps/plugin-shell": "2.0.0",
27+
"@tauri-apps/plugin-shell": "2.0.1",
2828
"@tauri-apps/plugin-store": "2.0.0",
2929
"@tauri-apps/plugin-updater": "2.0.0",
3030
"@zerodevx/svelte-json-view": "1.0.11"

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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.2]
412

513
- [`a1a82208`](https://github.com/tauri-apps/plugins-workspace/commit/a1a82208ed4ab87f83310be0dc95428aec9ab241) ([#1873](https://github.com/tauri-apps/plugins-workspace/pull/1873) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Downgrade MSRV to 1.77.2 to support Windows 7.

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.2"
4+
version = "2.0.3"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -24,16 +24,16 @@ tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.1", features =
2424
"watch",
2525
] }
2626
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.1" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.1" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.2" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.1" }
30+
], version = "2.0.2" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.1", features = [
3232
"windows7-compat",
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.1" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.1" }
36-
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.1" }
36+
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.2" }
3737
tauri-plugin-store = { path = "../../../plugins/store", version = "2.0.1" }
3838

3939
[dependencies.tauri]

plugins/dialog/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## \[2.0.1]
44

5+
- [`aee14ed4`](https://github.com/tauri-apps/plugins-workspace/commit/aee14ed4261cdedc4ed7cc2686f01f437859a5c7) ([#1892](https://github.com/tauri-apps/plugins-workspace/pull/1892) by [@nashaofu](https://github.com/tauri-apps/plugins-workspace/../../nashaofu)) Set `save` dialog mime type from the `filters` extensions on Android.
6+
7+
## \[2.0.1]
8+
59
- [`a1a82208`](https://github.com/tauri-apps/plugins-workspace/commit/a1a82208ed4ab87f83310be0dc95428aec9ab241) ([#1873](https://github.com/tauri-apps/plugins-workspace/pull/1873) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Downgrade MSRV to 1.77.2 to support Windows 7.
610

711
### Dependencies

0 commit comments

Comments
 (0)