Skip to content

Commit 6859ed1

Browse files
github-actions[bot]gezihuzi
authored andcommitted
publish new versions (tauri-apps#2542)
1 parent 0a1036a commit 6859ed1

File tree

14 files changed

+37
-28
lines changed

14 files changed

+37
-28
lines changed

.changes/http-controller-multiple-close.md

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

.changes/updater-riscv64.md

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

Cargo.lock

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

3+
## \[2.0.19]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.18]
411

512
### Dependencies

examples/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.18",
4+
"version": "2.0.19",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -20,15 +20,15 @@
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
2222
"@tauri-apps/plugin-haptics": "^2.2.0",
23-
"@tauri-apps/plugin-http": "^2.4.1",
23+
"@tauri-apps/plugin-http": "^2.4.2",
2424
"@tauri-apps/plugin-nfc": "^2.2.0",
2525
"@tauri-apps/plugin-notification": "^2.2.2",
2626
"@tauri-apps/plugin-opener": "^2.2.6",
2727
"@tauri-apps/plugin-os": "^2.2.1",
2828
"@tauri-apps/plugin-process": "^2.2.0",
2929
"@tauri-apps/plugin-shell": "^2.2.0",
3030
"@tauri-apps/plugin-store": "^2.2.0",
31-
"@tauri-apps/plugin-updater": "^2.6.0",
31+
"@tauri-apps/plugin-updater": "^2.6.1",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.23]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.22]
411

512
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 3 additions & 3 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.22"
4+
version = "2.0.23"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -27,7 +27,7 @@ tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager",
2727
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.4.1" }
30+
], version = "2.4.2" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.2", features = [
3232
"windows7-compat",
3333
] }
@@ -53,7 +53,7 @@ features = [
5353
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5454
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.2.0" }
5555
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.2.0" }
56-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.6.0" }
56+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.6.1" }
5757
tauri-plugin-window-state = { path = "../../../plugins/window-state", version = "2.2.0" }
5858

5959
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]

plugins/http/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.4.2]
4+
5+
- [`a15eedf3`](https://github.com/tauri-apps/plugins-workspace/commit/a15eedf37854344f7ffbcb0d373d848563817011) ([#2535](https://github.com/tauri-apps/plugins-workspace/pull/2535) by [@amrbashir](https://github.com/tauri-apps/plugins-workspace/../../amrbashir)) Fix `fetch` occasionally throwing an error due to trying to close the underline stream twice.
6+
37
## \[2.4.1]
48

59
- [`d3183aa9`](https://github.com/tauri-apps/plugins-workspace/commit/d3183aa99da7ca67e627394132ddeb3b85ccef06) ([#2522](https://github.com/tauri-apps/plugins-workspace/pull/2522) by [@adrieljss](https://github.com/tauri-apps/plugins-workspace/../../adrieljss)) Fix `fetch` blocking until the whole response is read even if it was a streaming response.

plugins/http/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-http"
3-
version = "2.4.1"
3+
version = "2.4.2"
44
description = "Access an HTTP client written in Rust."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/http/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-http",
3-
"version": "2.4.1",
3+
"version": "2.4.2",
44
"license": "MIT OR Apache-2.0",
55
"authors": [
66
"Tauri Programme within The Commons Conservancy"

0 commit comments

Comments
 (0)