Skip to content

Commit 80804ad

Browse files
publish new versions (#2380)
Co-authored-by: Legend-Master <[email protected]>
1 parent 93edbd1 commit 80804ad

File tree

15 files changed

+33
-30
lines changed

15 files changed

+33
-30
lines changed

.changes/fix-macos-user-install-update.md

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

.changes/updater-new-fn.md

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

.changes/upload-tls.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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
### Dependencies

examples/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api",
33
"private": true,
4-
"version": "2.0.12",
4+
"version": "2.0.13",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -28,7 +28,7 @@
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.4.0",
31+
"@tauri-apps/plugin-updater": "^2.5.0",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

examples/api/src-tauri/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.17]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.16]
410

511
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 2 additions & 2 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.16"
4+
version = "2.0.17"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -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.4.0" }
56+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.5.0" }
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/updater/CHANGELOG.md

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

3+
## \[2.5.0]
4+
5+
- [`5369898d`](https://github.com/tauri-apps/plugins-workspace/commit/5369898db7a6098e3e2f43436100ea556d405628) ([#2067](https://github.com/tauri-apps/plugins-workspace/pull/2067) by [@jLynx](https://github.com/tauri-apps/plugins-workspace/../../jLynx)) Fix update installation on macOS when using an user without admin privileges.
6+
- [`5369898d`](https://github.com/tauri-apps/plugins-workspace/commit/5369898db7a6098e3e2f43436100ea556d405628) ([#2067](https://github.com/tauri-apps/plugins-workspace/pull/2067) by [@jLynx](https://github.com/tauri-apps/plugins-workspace/../../jLynx)) Remove the `UpdaterBuilder::new` function, use `UpdaterExt::updater_builder` instead.
7+
38
## \[2.4.0]
49

510
- [`0afc9b6b`](https://github.com/tauri-apps/plugins-workspace/commit/0afc9b6be07bee1077f05a86285d977e57810ed9) ([#2325](https://github.com/tauri-apps/plugins-workspace/pull/2325) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) The `Update` struct/object will now contain a `raw_json`/`rawJson` property to be able to read parts of server's json response that are not handled by the plugin.

plugins/updater/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-updater"
3-
version = "2.4.0"
3+
version = "2.5.0"
44
description = "In-app updates for Tauri applications."
55
edition = { workspace = true }
66
authors = { workspace = true }

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

plugins/upload/CHANGELOG.md

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

33
## \[2.2.1]
44

5+
- [`ca7395a5`](https://github.com/tauri-apps/plugins-workspace/commit/ca7395a5ce971cbac25fb54285056edf3dd84e1f) ([#2378](https://github.com/tauri-apps/plugins-workspace/pull/2378) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) the `rustls-tls` feature is now enabled by default
6+
7+
## \[2.2.1]
8+
59
- [`05c62d73`](https://github.com/tauri-apps/plugins-workspace/commit/05c62d731fa48fd06b8cb3694a962d8cb0db8619) ([#1523](https://github.com/tauri-apps/plugins-workspace/pull/1523) by [@enri90](https://github.com/tauri-apps/plugins-workspace/../../enri90)) Added post request on download function
610

711
## \[2.2.0]

plugins/upload/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-upload"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "Upload files from disk to a remote server over HTTP."
55
authors = { workspace = true }
66
license = { workspace = true }

plugins/upload/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-upload",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Upload files from disk to a remote server over HTTP.",
55
"license": "MIT OR Apache-2.0",
66
"authors": [

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)