Skip to content

Commit ad17266

Browse files
Publish New Versions (v2) (tauri-apps#2348)
Co-authored-by: FabianLars <[email protected]>
1 parent 78acfa4 commit ad17266

26 files changed

+77
-71
lines changed

.changes/cleanup-fn-websocket.md

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

.changes/clipboard-drop.md

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

.changes/http-dangerous-settings.md

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

.changes/objc2-log.md

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

.changes/updater-unknown-fields.md

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

Cargo.lock

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

3+
## \[2.0.12]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.11]
413

514
### 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.11",
4+
"version": "2.0.12",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -14,21 +14,21 @@
1414
"@tauri-apps/plugin-barcode-scanner": "^2.2.0",
1515
"@tauri-apps/plugin-biometric": "^2.2.0",
1616
"@tauri-apps/plugin-cli": "^2.2.0",
17-
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
17+
"@tauri-apps/plugin-clipboard-manager": "^2.2.1",
1818
"@tauri-apps/plugin-dialog": "^2.2.0",
1919
"@tauri-apps/plugin-fs": "^2.2.0",
2020
"@tauri-apps/plugin-geolocation": "^2.2.0",
2121
"@tauri-apps/plugin-global-shortcut": "^2.2.0",
2222
"@tauri-apps/plugin-opener": "^2.2.5",
2323
"@tauri-apps/plugin-haptics": "^2.2.0",
24-
"@tauri-apps/plugin-http": "^2.2.0",
24+
"@tauri-apps/plugin-http": "^2.3.0",
2525
"@tauri-apps/plugin-nfc": "^2.2.0",
2626
"@tauri-apps/plugin-notification": "^2.2.1",
2727
"@tauri-apps/plugin-os": "^2.2.0",
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.2.0",
31+
"@tauri-apps/plugin-updater": "^2.4.0",
3232
"@zerodevx/svelte-json-view": "1.0.11"
3333
},
3434
"devDependencies": {

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.16]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
- Upgraded to `[email protected]`
10+
- Upgraded to `[email protected]`
11+
312
## \[2.0.15]
413

514
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 5 additions & 5 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.15"
4+
version = "2.0.16"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -19,15 +19,15 @@ serde_json = { workspace = true }
1919
serde = { workspace = true }
2020
tiny_http = "0.12"
2121
log = { workspace = true }
22-
tauri-plugin-log = { path = "../../../plugins/log", version = "2.2.0" }
22+
tauri-plugin-log = { path = "../../../plugins/log", version = "2.2.1" }
2323
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.2.0", features = [
2424
"watch",
2525
] }
26-
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.0" }
26+
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.2.1" }
2727
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.2.0" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.2.0" }
30+
], version = "2.3.0" }
3131
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.2.1", 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.3.1" }
56+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.4.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]

0 commit comments

Comments
 (0)