Skip to content

Commit 0469f02

Browse files
publish new versions (#2172)
Co-authored-by: FabianLars <[email protected]>
1 parent 77b8550 commit 0469f02

File tree

18 files changed

+65
-33
lines changed

18 files changed

+65
-33
lines changed

.changes/fix-fs-build.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.5]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.4]
412

513
### Dependencies

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": "api",
33
"private": true,
4-
"version": "2.0.4",
4+
"version": "2.0.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -15,13 +15,13 @@
1515
"@tauri-apps/plugin-biometric": "2.0.0",
1616
"@tauri-apps/plugin-cli": "2.0.0",
1717
"@tauri-apps/plugin-clipboard-manager": "2.0.1",
18-
"@tauri-apps/plugin-dialog": "2.0.1",
19-
"@tauri-apps/plugin-fs": "2.0.3",
18+
"@tauri-apps/plugin-dialog": "2.0.2",
19+
"@tauri-apps/plugin-fs": "2.0.4",
2020
"@tauri-apps/plugin-geolocation": "2.0.0",
2121
"@tauri-apps/plugin-global-shortcut": "2.0.0",
2222
"@tauri-apps/plugin-opener": "2.0.0",
2323
"@tauri-apps/plugin-haptics": "2.0.0",
24-
"@tauri-apps/plugin-http": "2.0.1",
24+
"@tauri-apps/plugin-http": "2.0.2",
2525
"@tauri-apps/plugin-nfc": "2.0.0",
2626
"@tauri-apps/plugin-notification": "2.0.0",
2727
"@tauri-apps/plugin-os": "2.0.0",

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.8]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.7]
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.7"
4+
version = "2.0.8"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -20,14 +20,14 @@ serde = { workspace = true }
2020
tiny_http = "0.12"
2121
log = { workspace = true }
2222
tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.4" }
23-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.1.0", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.1.1", features = [
2424
"watch",
2525
] }
2626
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.2" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.4" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.5" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.4" }
30+
], version = "2.0.5" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.1", features = [
3232
"windows7-compat",
3333
] }

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.0.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.4]
410

511
- [`76f99ce9`](https://github.com/tauri-apps/plugins-workspace/commit/76f99ce999a2ff9e40235c1675e3eb6570b5e1e2) ([#2108](https://github.com/tauri-apps/plugins-workspace/pull/2108) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) The `Dialog` struct is now correctly exported, primarily to fix the documentation on `docs.rs`.

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.0.4"
3+
version = "2.0.5"
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.1.0" }
37+
tauri-plugin-fs = { path = "../fs", version = "2.1.1" }
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.0.1",
3+
"version": "2.0.2",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

plugins/fs/CHANGELOG.md

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

3+
## \[2.0.4]
4+
5+
- [`77b85507`](https://github.com/tauri-apps/plugins-workspace/commit/77b855074aad612f2b28e6a3b5881fac767a05ae) ([#2171](https://github.com/tauri-apps/plugins-workspace/pull/2171) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed docs.rs build.
6+
37
## \[2.0.3]
48

59
- [`ed981027`](https://github.com/tauri-apps/plugins-workspace/commit/ed981027dd4fba7d0e2f836eb5db34d344388d73) ([#1962](https://github.com/tauri-apps/plugins-workspace/pull/1962) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Improve performance of `readTextFile` and `readTextFileLines` APIs
@@ -197,7 +201,7 @@
197201
ac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
198202
.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
199203
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
200-
apps/plugins-workspace/pull/371)) First v2 alpha release!
204+
apps/plugins-workspace/pull/371)) First v2 alpha release!
201205
.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
202206
717ae670978feb4492fac1f295998b93f2b9347f)([#371](https://github.com/tauri-apps/plugins-workspace/pull/371)) First v2 alpha release!
203207
kspace/pull/371)) First v2 alpha release!

0 commit comments

Comments
 (0)