Skip to content

Commit 525abc4

Browse files
Publish New Versions (v2) (#1961)
Co-authored-by: amrbashir <[email protected]>
1 parent 14cee64 commit 525abc4

File tree

12 files changed

+48
-23
lines changed

12 files changed

+48
-23
lines changed

.changes/change-pr-1958.md

Lines changed: 0 additions & 5 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/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.4]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
311
## \[2.0.3]
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.3"
4+
version = "2.0.4"
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.1" }
23-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.2", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.3", 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.2" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.3" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.2" }
30+
], version = "2.0.3" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.1", features = [
3232
"windows7-compat",
3333
] }

plugins/dialog/CHANGELOG.md

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

3+
## \[2.0.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.1]
410

511
- [`2302c2db`](https://github.com/tauri-apps/plugins-workspace/commit/2302c2db1c49673e61dcbda8cdb01b2c57e9ba6f) ([#1910](https://github.com/tauri-apps/plugins-workspace/pull/1910) by [@Legend-Master](https://github.com/tauri-apps/plugins-workspace/../../Legend-Master)) Fix `ask` and `confirm` not using system button texts
@@ -293,5 +299,5 @@
293299
pull/371)) First v2 alpha release!
294300
lpha release!
295301
pull/371)) First v2 alpha release!
296-
lease!
302+
lease!
297303
pull/371)) First v2 alpha release!

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.2"
3+
version = "2.0.3"
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.0.2" }
37+
tauri-plugin-fs = { path = "../fs", version = "2.0.3" }
3838

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

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.0.3]
4+
5+
- [`14cee64c`](https://github.com/tauri-apps/plugins-workspace/commit/14cee64c82a72655ae6a4ac0892736a2959dbda5) ([#1958](https://github.com/tauri-apps/plugins-workspace/pull/1958) by [@bWanShiTong](https://github.com/tauri-apps/plugins-workspace/../../bWanShiTong)) Fix compilation on targets with pointer width of `16` or `32`
6+
37
## \[2.0.1]
48

59
- [`ae802456`](https://github.com/tauri-apps/plugins-workspace/commit/ae8024565f074f313084777c8b10d1b5e3bbe220) ([#1950](https://github.com/tauri-apps/plugins-workspace/pull/1950) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Improve performance of the `FileHandle.read` and `writeTextFile` APIs.

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.0.2"
3+
version = "2.0.3"
44
description = "Access the file system."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/http/CHANGELOG.md

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

3+
## \[2.0.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.1]
410

511
- [`cfd48b3b`](https://github.com/tauri-apps/plugins-workspace/commit/cfd48b3b2ec0fccfc162197518694ed59ceda22c) ([#1941](https://github.com/tauri-apps/plugins-workspace/pull/1941) by [@Nipsuli](https://github.com/tauri-apps/plugins-workspace/../../Nipsuli)) Allow skipping sending `Origin` header in HTTP requests by setting `Origin` header to an empty string when calling `fetch`.
@@ -291,6 +297,6 @@
291297
ha release!
292298
!
293299
371\)) First v2 alpha release!
294-
lease!
300+
lease!
295301
!
296302
371\)) First v2 alpha release!

plugins/http/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-http"
3-
version = "2.0.2"
3+
version = "2.0.3"
44
description = "Access an HTTP client written in Rust."
55
edition = { workspace = true }
66
authors = { workspace = true }
@@ -34,7 +34,7 @@ serde_json = { workspace = true }
3434
tauri = { workspace = true }
3535
thiserror = { workspace = true }
3636
tokio = { version = "1", features = ["sync", "macros"] }
37-
tauri-plugin-fs = { path = "../fs", version = "2.0.2" }
37+
tauri-plugin-fs = { path = "../fs", version = "2.0.3" }
3838
urlpattern = "0.3"
3939
regex = "1"
4040
http = "1"

0 commit comments

Comments
 (0)