Skip to content

Commit 9b0e105

Browse files
github-actions[bot]lucasfernog
authored andcommitted
publish new versions (tauri-apps#1740)
Co-authored-by: lucasfernog <[email protected]>
1 parent dc3675e commit 9b0e105

File tree

10 files changed

+34
-10
lines changed

10 files changed

+34
-10
lines changed

.changes/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
"tag": "rc",
33
"changes": [
44
".changes/android-dialog-save.md",
5+
".changes/barcode-dependencies.md",
6+
".changes/barcode-scanner-validate-plist.md",
57
".changes/consolidate-permission-state.md",
68
".changes/dialog-file-response-non-exhaustive.md",
79
".changes/dialog-return-path.md",
@@ -22,13 +24,15 @@
2224
".changes/haptics-release.md",
2325
".changes/iife-varname-spacing.md",
2426
".changes/ios-dialog-save.md",
27+
".changes/notification-body-optional-ios.md",
2528
".changes/notification-permission-type-change.md",
2629
".changes/rc.md",
2730
".changes/remove-target-sdk.md",
2831
".changes/resolve-content-uris.md",
2932
".changes/shell-open-regex-match-string.md",
3033
".changes/shell-regex-match-string.md",
3134
".changes/single-instance-windows-sys.0.59.md",
35+
".changes/sql-uuid-type.md",
3236
".changes/store-remove-mobile-plugin.md",
3337
".changes/swift-build-older-versions.md",
3438
".changes/tauri-rc-8.md",

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.0-rc.5]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.4]
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.0-rc.4"
4+
version = "2.0.0-rc.5"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -28,7 +28,7 @@ tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.5"
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
3030
], version = "2.0.0-rc.3" }
31-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.3", features = [
31+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.4", features = [
3232
"windows7-compat",
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-rc.1" }
@@ -55,7 +55,7 @@ tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", vers
5555
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-rc.3" }
5656

5757
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
58-
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-rc.3" }
58+
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-rc.4" }
5959
tauri-plugin-nfc = { path = "../../../plugins/nfc", version = "2.0.0-rc.3" }
6060
tauri-plugin-biometric = { path = "../../../plugins/biometric/", version = "2.0.0-rc.3" }
6161

plugins/barcode-scanner/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.0.0-rc.4]
4+
5+
- [`713c54ef`](https://github.com/tauri-apps/plugins-workspace/commit/713c54ef8365d36afd84585dcabed2fbb751223d) ([#1749](https://github.com/tauri-apps/plugins-workspace/pull/1749) by [@olivierlemasle](https://github.com/tauri-apps/plugins-workspace/../../olivierlemasle)) Remove unused Android dependencies.
6+
- [`8c3a6a25`](https://github.com/tauri-apps/plugins-workspace/commit/8c3a6a253d7029d370659d2102f91a458745d345) ([#1758](https://github.com/tauri-apps/plugins-workspace/pull/1758) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Validate missing `NSCameraUsageDescription` Info.plist value.
7+
38
## \[2.0.0-rc.1]
49

510
- [`e2e97db5`](https://github.com/tauri-apps/plugins-workspace/commit/e2e97db51983267f5be84d4f6f0278d58834d1f5) ([#1701](https://github.com/tauri-apps/plugins-workspace/pull/1701) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use `PermissionState` from the `tauri` crate, which now also includes a "prompt with rationale" variant for Android (returned when your app must explain to the user why it needs the permission).

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.3"
3+
version = "2.0.0-rc.4"
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/notification/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.0.0-rc.4]
4+
5+
- [`3d301c65`](https://github.com/tauri-apps/plugins-workspace/commit/3d301c654e6f5e7f343e0e0cbb57648002e98f04) ([#1737](https://github.com/tauri-apps/plugins-workspace/pull/1737) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) The notification body is now optional on iOS to match the other platforms.
6+
37
## \[2.0.0-rc.1]
48

59
- [`e2e97db5`](https://github.com/tauri-apps/plugins-workspace/commit/e2e97db51983267f5be84d4f6f0278d58834d1f5) ([#1701](https://github.com/tauri-apps/plugins-workspace/pull/1701) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Use `PermissionState` from the `tauri` crate, which now also includes a "prompt with rationale" variant for Android (returned when your app must explain to the user why it needs the permission).

plugins/notification/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-notification"
3-
version = "2.0.0-rc.3"
3+
version = "2.0.0-rc.4"
44
description = "Send desktop and mobile notifications on your Tauri application."
55
edition = { workspace = true }
66
authors = { workspace = true }

plugins/sql/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.0.0-rc.2]
4+
5+
- [`0dd97d91`](https://github.com/tauri-apps/plugins-workspace/commit/0dd97d911569cdedab07f504b708036d62ff83c1) ([#1375](https://github.com/tauri-apps/plugins-workspace/pull/1375) by [@KauanCurbani](https://github.com/tauri-apps/plugins-workspace/../../KauanCurbani)) Added support for `UUID` columns to the postgres implementation.
6+
37
## \[2.0.0-rc.1]
48

59
- [`e2e97db5`](https://github.com/tauri-apps/plugins-workspace/commit/e2e97db51983267f5be84d4f6f0278d58834d1f5) ([#1701](https://github.com/tauri-apps/plugins-workspace/pull/1701) by [@lucasfernog](https://github.com/tauri-apps/plugins-workspace/../../lucasfernog)) Update to tauri 2.0.0-rc.8

plugins/sql/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-sql"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Interface with SQL databases."
55
authors = { workspace = true }
66
license = { workspace = true }

0 commit comments

Comments
 (0)