Skip to content

Commit 5cbd593

Browse files
publish new versions (#1772)
Co-authored-by: lucasfernog <[email protected]>
1 parent f7600b5 commit 5cbd593

File tree

28 files changed

+127
-48
lines changed

28 files changed

+127
-48
lines changed

.changes/pre.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,21 @@
77
".changes/consolidate-permission-state.md",
88
".changes/deep-link-event.md",
99
".changes/deep-link-get-current-desktop.md",
10+
".changes/deep-link-on-new-url.md",
1011
".changes/deep-link-register-all.md",
1112
".changes/dialog-asset-scope.md",
1213
".changes/dialog-file-response-non-exhaustive.md",
1314
".changes/dialog-return-path.md",
15+
".changes/fix-barcodae-scanner-imports.md",
16+
".changes/fix-clipboard-warnings-sdk.md",
1417
".changes/fix-deep-link-config.md",
18+
".changes/fix-fs-app-scopes.md",
1519
".changes/fix-fs-write-file-android.md",
1620
".changes/fix-http-plugin-abort.md",
1721
".changes/fix-ios-file-dialog-default-mode.md",
1822
".changes/fix-linux-updater-permission-error.md",
1923
".changes/fix-restore-minimized-window-position.md",
24+
".changes/fix-restore-minimized-window-state.md",
2025
".changes/fs-dialog-file-path-methods.md",
2126
".changes/fs-dialog-file-path-traits.md",
2227
".changes/fs-dialog-non-exhaustive-error.md",
@@ -44,8 +49,10 @@
4449
".changes/swift-build-older-versions.md",
4550
".changes/tauri-rc-8.md",
4651
".changes/update-fs-api-docs.md",
52+
".changes/update-tauri-rc-12.md",
4753
".changes/update-tauri-rc-3.md",
4854
".changes/updater-js-headers-download-crate.md",
49-
".changes/updater-js-headers-download.md"
55+
".changes/updater-js-headers-download.md",
56+
".changes/window-state-physical-size.md"
5057
]
5158
}

Cargo.lock

Lines changed: 10 additions & 10 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.4]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.3]
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.3",
4+
"version": "2.0.0-rc.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --clearScreen false",
@@ -10,10 +10,10 @@
1010
},
1111
"dependencies": {
1212
"@tauri-apps/api": "2.0.0-rc.4",
13-
"@tauri-apps/plugin-barcode-scanner": "2.0.0-rc.1",
13+
"@tauri-apps/plugin-barcode-scanner": "2.0.0-rc.2",
1414
"@tauri-apps/plugin-biometric": "2.0.0-rc.1",
1515
"@tauri-apps/plugin-cli": "2.0.0-rc.1",
16-
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.1",
16+
"@tauri-apps/plugin-clipboard-manager": "2.0.0-rc.2",
1717
"@tauri-apps/plugin-dialog": "2.0.0-rc.1",
1818
"@tauri-apps/plugin-fs": "2.0.0-rc.2",
1919
"@tauri-apps/plugin-global-shortcut": "2.0.0-rc.1",

examples/api/src-tauri/CHANGELOG.md

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

3+
## \[2.0.0-rc.7]
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+
313
## \[2.0.0-rc.6]
414

515
### Dependencies

examples/api/src-tauri/Cargo.toml

Lines changed: 6 additions & 6 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.6"
4+
version = "2.0.0-rc.7"
55
description = "An example Tauri Application showcasing the api"
66
edition = "2021"
77
rust-version = { workspace = true }
@@ -20,15 +20,15 @@ serde = { workspace = true }
2020
tiny_http = "0.12"
2121
log = { workspace = true }
2222
tauri-plugin-log = { path = "../../../plugins/log", version = "2.0.0-rc.2" }
23-
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.4", features = [
23+
tauri-plugin-fs = { path = "../../../plugins/fs", version = "2.0.0-rc.5", features = [
2424
"watch",
2525
] }
26-
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.3" }
27-
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.6" }
26+
tauri-plugin-clipboard-manager = { path = "../../../plugins/clipboard-manager", version = "2.0.0-rc.4" }
27+
tauri-plugin-dialog = { path = "../../../plugins/dialog", version = "2.0.0-rc.7" }
2828
tauri-plugin-http = { path = "../../../plugins/http", features = [
2929
"multipart",
30-
], version = "2.0.0-rc.4" }
31-
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.4", features = [
30+
], version = "2.0.0-rc.5" }
31+
tauri-plugin-notification = { path = "../../../plugins/notification", version = "2.0.0-rc.5", features = [
3232
"windows7-compat",
3333
] }
3434
tauri-plugin-os = { path = "../../../plugins/os", version = "2.0.0-rc.1" }

plugins/barcode-scanner/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+
- [`79d6e19c`](https://github.com/tauri-apps/plugins-workspace/commit/79d6e19c4b38bae0cab29eb88df379e2237d9aac) ([#1777](https://github.com/tauri-apps/plugins-workspace/pull/1777)) Fixed an issue which caused checkPermission and requestPermission to be mixed up.
6+
37
## \[2.0.0-rc.4]
48

59
- [`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.

plugins/barcode-scanner/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-barcode-scanner",
3-
"version": "2.0.0-rc.1",
3+
"version": "2.0.0-rc.2",
44
"description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS",
55
"license": "MIT or APACHE-2.0",
66
"authors": [

plugins/clipboard-manager/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+
- [`341a5320`](https://github.com/tauri-apps/plugins-workspace/commit/341a5320c33d3c7b041abf7eb0ab7ad8009e6c3f) ([#1771](https://github.com/tauri-apps/plugins-workspace/pull/1771)) Fix warnings and clear implementation on Android below SDK 28.
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/clipboard-manager/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-clipboard-manager"
3-
version = "2.0.0-rc.3"
3+
version = "2.0.0-rc.4"
44
description = "Read and write to the system clipboard."
55
edition = { workspace = true }
66
authors = { workspace = true }

0 commit comments

Comments
 (0)