Skip to content

Commit 0469f02

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

18 files changed

+65
-33
lines changed

.changes/fix-fs-build.md

-6
This file was deleted.

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/api/CHANGELOG.md

+8
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

+4-4
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

+8
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

+4-4
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

+6
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

+2-2
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

+1-1
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

+5-1
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!

plugins/fs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-fs"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "Access the file system."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/fs/package.json

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

plugins/http/CHANGELOG.md

+6
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
- [`a3b553dd`](https://github.com/tauri-apps/plugins-workspace/commit/a3b553ddb403771aa699362c4e69a064b7731da5) ([#2079](https://github.com/tauri-apps/plugins-workspace/pull/2079) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Add tracing logs for requestes and responses behind `tracing` feature flag.

plugins/http/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-http"
3-
version = "2.0.4"
3+
version = "2.0.5"
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.1.0" }
37+
tauri-plugin-fs = { path = "../fs", version = "2.1.1" }
3838
urlpattern = "0.3"
3939
regex = "1"
4040
http = "1"

plugins/http/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/plugin-http",
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/persisted-scope/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
- [`fecfd553`](https://github.com/tauri-apps/plugins-workspace/commit/fecfd5533a6452f054fbcd909021f12b0dce834f) ([#2070](https://github.com/tauri-apps/plugins-workspace/pull/2070) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) **Breaking Change:** Replaced the custom `tauri_plugin_fs::Scope` struct with `tauri::fs::Scope`.

plugins/persisted-scope/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin-persisted-scope"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "Save filesystem and asset scopes and restore them when the app is reopened."
55
authors = { workspace = true }
66
license = { workspace = true }
@@ -27,7 +27,7 @@ log = { workspace = true }
2727
thiserror = { workspace = true }
2828
aho-corasick = "1"
2929
bincode = "1"
30-
tauri-plugin-fs = { path = "../fs", version = "2.1.0" }
30+
tauri-plugin-fs = { path = "../fs", version = "2.1.1" }
3131

3232
[features]
3333
protocol-asset = ["tauri/protocol-asset"]

pnpm-lock.yaml

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)