Skip to content

Commit cc0d457

Browse files
authored
publish new versions
1 parent 4dd7f5d commit cc0d457

39 files changed

+184
-59
lines changed

.changes/pre.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{
22
"tag": "rc",
33
"changes": [
4+
".changes/android-dialog-save.md",
5+
".changes/fix-http-plugin-abort.md",
6+
".changes/fix-linux-updater-permission-error.md",
47
".changes/geolocation-release.md",
58
".changes/haptics-release.md",
9+
".changes/iife-varname-spacing.md",
610
".changes/rc.md",
11+
".changes/remove-target-sdk.md",
712
".changes/shell-open-regex-match-string.md",
8-
".changes/shell-regex-match-string.md"
13+
".changes/shell-regex-match-string.md",
14+
".changes/update-fs-api-docs.md"
915
]
1016
}

Cargo.lock

Lines changed: 15 additions & 15 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.0-rc.1]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.0]
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": "svelte-app",
33
"private": true,
4-
"version": "2.0.0-rc.0",
4+
"version": "2.0.0-rc.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -15,9 +15,9 @@
1515
"@tauri-apps/plugin-cli": "2.0.0-rc.0",
1616
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.0",
1717
"@tauri-apps/plugin-dialog": "2.0.0-rc.0",
18-
"@tauri-apps/plugin-fs": "2.0.0-rc.0",
18+
"@tauri-apps/plugin-fs": "2.0.0-rc.1",
1919
"@tauri-apps/plugin-global-shortcut": "2.0.0-rc.0",
20-
"@tauri-apps/plugin-http": "2.0.0-rc.0",
20+
"@tauri-apps/plugin-http": "2.0.0-rc.1",
2121
"@tauri-apps/plugin-nfc": "2.0.0-rc.0",
2222
"@tauri-apps/plugin-notification": "2.0.0-rc.0",
2323
"@tauri-apps/plugin-os": "2.0.0-rc.0",

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.0-rc.0]
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+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
- Upgraded to `[email protected]`
14+
- Upgraded to `[email protected]`
15+
- Upgraded to `[email protected]`
16+
317
## \[2.0.0-beta.17]
418

519
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 10 additions & 10 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.0-beta.17"
4+
version = "2.0.0-rc.0"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -23,17 +23,17 @@ tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-rc.0" }
2323
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.0", features = [
2424
"watch",
2525
] }
26-
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.0" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.0" }
26+
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.1" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.1" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
3030
], version = "2.0.0-rc.0" }
31-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.0", features = [
31+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.1", features = [
3232
"windows7-compat",
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-rc.0" }
3535
tauri-plugin-process = { path = "../../../plugins/process", version = "2.0.0-rc.0" }
36-
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-rc.0" }
36+
tauri-plugin-shell = { path = "../../../plugins/shell", version = "2.0.0-rc.1" }
3737

3838
[dependencies.tauri]
3939
workspace = true
@@ -50,13 +50,13 @@ features = [
5050

5151
[target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
5252
tauri-plugin-cli = { path = "../../../plugins/cli", version = "2.0.0-rc.0" }
53-
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-rc.0" }
54-
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.0" }
53+
tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", version = "2.0.0-rc.1" }
54+
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.1" }
5555

5656
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
57-
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-rc.0" }
58-
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.0.0-rc.0" }
59-
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.0.0-rc.0" }
57+
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-rc.1" }
58+
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.0.0-rc.1" }
59+
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.0.0-rc.1" }
6060

6161
[target."cfg(target_os = \"windows\")".dependencies]
6262
window-shadows = "0.2"

plugins/barcode-scanner/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.0-rc.1]
4+
5+
- [`2c00c029`](https://github.com/tauri-apps/plugins-workspace/commit/2c00c0292c9127b81567de46691e8c0f73557261) ([#1630](https://github.com/tauri-apps/plugins-workspace/pull/1630) by [@FabianLars](https://github.com/tauri-apps/plugins-workspace/../../FabianLars)) Fixed an issue that caused multi-word IIFE names to not be formatted correctly. For example the `barcode-scanner` was defined as `window.__TAURI_PLUGIN_CLIPBOARDMANAGER__` instead of `window.__TAURI_PLUGIN_CLIPBOARD_MANAGER__`.
6+
7+
### changes
8+
9+
- [`6b079cfd`](https://github.com/tauri-apps/plugins-workspace/commit/6b079cfdd107c94abc2c7300f6af00bac3ff4040) ([#1649](https://github.com/tauri-apps/plugins-workspace/pull/1649) by [@ahqsoftwares](https://github.com/tauri-apps/plugins-workspace/../../ahqsoftwares)) Remove targetSdk from build.kts files as it is deprecated and will be removed from DSL v9.0
10+
311
## \[2.0.0-rc.0]
412

513
- [`9887d1`](https://github.com/tauri-apps/plugins-workspace/commit/9887d14bd0e971c4c0f5c1188fc4005d3fc2e29e) Update to tauri RC.

plugins/barcode-scanner/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-barcode-scanner"
3-
version = "2.0.0-rc.0"
3+
version = "2.0.0-rc.1"
44
description = "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS"
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/biometric/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.0-rc.1]
4+
5+
### changes
6+
7+
- [`6b079cfd`](https://github.com/tauri-apps/plugins-workspace/commit/6b079cfdd107c94abc2c7300f6af00bac3ff4040) ([#1649](https://github.com/tauri-apps/plugins-workspace/pull/1649) by [@ahqsoftwares](https://github.com/tauri-apps/plugins-workspace/../../ahqsoftwares)) Remove targetSdk from build.kts files as it is deprecated and will be removed from DSL v9.0
8+
39
## \[2.0.0-rc.0]
410

511
- [`9887d1`](https://github.com/tauri-apps/plugins-workspace/commit/9887d14bd0e971c4c0f5c1188fc4005d3fc2e29e) Update to tauri RC.

plugins/biometric/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-biometric"
3-
version = "2.0.0-rc.0"
3+
version = "2.0.0-rc.1"
44
description = "Prompt the user for biometric authentication on Android and iOS."
55
edition = { workspace = true }
66
authors = { workspace = true }

0 commit comments

Comments
 (0)