Skip to content

Commit 3522fbd

Browse files
Apply Version Updates From Current Changes (#10561)
* apply version updates * fix versions --------- Co-authored-by: lucasfernog <[email protected]> Co-authored-by: Lucas Nogueira <[email protected]>
1 parent dd5b081 commit 3522fbd

File tree

31 files changed

+428
-71
lines changed

31 files changed

+428
-71
lines changed

.changes/pre.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,65 @@
11
{
22
"tag": "rc",
33
"changes": [
4+
".changes/add-notarize-error.md",
5+
".changes/allow-commands-by-default.md",
46
".changes/android-dev-open-adb-fix.md",
57
".changes/android-gradle-8-9.md",
8+
".changes/android-port-forward-fixes.md",
69
".changes/asset-resolver-dev-fallback.md",
10+
".changes/brotli-6.md",
11+
".changes/change-default-export-option-debugging.md",
712
".changes/change-pr-10435.md",
813
".changes/change-pr-10498.md",
14+
".changes/change-pr-10619.md",
915
".changes/check-android-lib-symbols.md",
16+
".changes/cli-add-no-fmt.md",
17+
".changes/cli-android-template-androidtv.md",
1018
".changes/cli-desktop-port-exposure.md",
19+
".changes/cli-make-app-dir-consistent.md",
1120
".changes/cli-mobile-checks.md",
21+
".changes/cli-signtool-path.md",
1222
".changes/core-plugin-namespace.md",
1323
".changes/dev-url-localhost-mobile.md",
24+
".changes/feat-remove-target-sdk.md",
1425
".changes/fix-adb.md",
26+
".changes/fix-cli-dev-server-android.md",
27+
".changes/fix-cli-panic-bun.md",
1528
".changes/fix-colon-in-file-path.md",
1629
".changes/fix-conf-parsing-error-filepath.md",
30+
".changes/fix-config-override.md",
31+
".changes/fix-ios-bun-support.md",
32+
".changes/fix-ipc-fallback.md",
33+
".changes/fix-manifest-migration.md",
34+
".changes/fix-missing-codesign-error-macos.md",
1735
".changes/fix-usage-without-compression.md",
36+
".changes/fix-v1-frontend-migration.md",
37+
".changes/get-window-async.md",
38+
".changes/improve-cli-init.md",
39+
".changes/infer-signing-identity.md",
1840
".changes/ios-custom-project-template.md",
1941
".changes/ios-default-minversion.md",
2042
".changes/ios-frameworks.md",
2143
".changes/isolation-main-frame-origin.md",
2244
".changes/linux-option-gtk-app-id.md",
45+
".changes/migrate-plugins.md",
46+
".changes/migrate-prevent-duplications.md",
47+
".changes/migrate-vue-svelte.md",
2348
".changes/min-ios-version.md",
49+
".changes/only-validate-ios-lib-debug.md",
50+
".changes/permissions-add-target-specific.md",
2451
".changes/plugin-builder-failable.md",
2552
".changes/rc-migration.md",
53+
".changes/refactor-ipc-error.md",
54+
".changes/refactor-ipc-response.md",
2655
".changes/remove-open-command.md",
2756
".changes/remove-unsecure-configs.md",
28-
".changes/v1-migrate-updater.md"
57+
".changes/resources-map-becoming-dirs.md",
58+
".changes/universal-bin-build-fails.md",
59+
".changes/update-tao-wry.md",
60+
".changes/utils-autogenerated-command-return-list.md",
61+
".changes/utils-fix-plugin-reference.md",
62+
".changes/v1-migrate-updater.md",
63+
".changes/v1-migration-improvement.md"
2964
]
3065
}

Cargo.lock

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

core/tauri-build/CHANGELOG.md

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

3+
## \[2.0.0-rc.3]
4+
5+
### New Features
6+
7+
- [`0bb7b0f35`](https://www.github.com/tauri-apps/tauri/commit/0bb7b0f352960fb5111a40157c0953d19e76f1fd) ([#10559](https://www.github.com/tauri-apps/tauri/pull/10559) by [@Norbiros](https://www.github.com/tauri-apps/tauri/../../Norbiros)) Added `InlinedPlugin::default_permission` to autogenerate the default permission of an inlined plugin.
8+
9+
### Dependencies
10+
11+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
314
## \[2.0.0-rc.2]
415

516
### Dependencies

core/tauri-build/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-build"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "build time code to pair with https://crates.io/crates/tauri"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -28,8 +28,8 @@ rustdoc-args = [ "--cfg", "docsrs" ]
2828
[dependencies]
2929
anyhow = "1"
3030
quote = { version = "1", optional = true }
31-
tauri-codegen = { version = "2.0.0-rc.2", path = "../tauri-codegen", optional = true }
32-
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils", features = [ "build", "resources" ] }
31+
tauri-codegen = { version = "2.0.0-rc.3", path = "../tauri-codegen", optional = true }
32+
tauri-utils = { version = "2.0.0-rc.3", path = "../tauri-utils", features = [ "build", "resources" ] }
3333
cargo_toml = "0.17"
3434
serde = "1"
3535
serde_json = "1"

core/tauri-codegen/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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- [`0afee5ed8`](https://www.github.com/tauri-apps/tauri/commit/0afee5ed80265c95c4581e173c4886677cfed593) ([#10436](https://www.github.com/tauri-apps/tauri/pull/10436) by [@nyurik](https://www.github.com/tauri-apps/tauri/../../nyurik)) Updated brotli to v6.
9+
310
## \[2.0.0-rc.2]
411

512
### Dependencies

core/tauri-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-codegen"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -20,7 +20,7 @@ quote = "1"
2020
syn = "2"
2121
serde = { version = "1", features = [ "derive" ] }
2222
serde_json = "1"
23-
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils", features = [ "build" ] }
23+
tauri-utils = { version = "2.0.0-rc.3", path = "../tauri-utils", features = [ "build" ] }
2424
thiserror = "1"
2525
walkdir = "2"
2626
brotli = { version = "6", optional = true, default-features = false, features = [ "std" ] }

core/tauri-macros/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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.2]
411

512
### Dependencies

core/tauri-macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-macros"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "Macros for the tauri crate."
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -20,8 +20,8 @@ proc-macro2 = { version = "1", features = [ "span-locations" ] }
2020
quote = "1"
2121
syn = { version = "2", features = [ "full" ] }
2222
heck = "0.5"
23-
tauri-codegen = { version = "2.0.0-rc.2", default-features = false, path = "../tauri-codegen" }
24-
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils" }
23+
tauri-codegen = { version = "2.0.0-rc.3", default-features = false, path = "../tauri-codegen" }
24+
tauri-utils = { version = "2.0.0-rc.3", path = "../tauri-utils" }
2525

2626
[features]
2727
custom-protocol = [ ]

core/tauri-plugin/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.3]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.2]
410

511
### Dependencies

core/tauri-plugin/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin"
3-
version = "2.0.0-rc.2"
3+
version = "2.0.0-rc.3"
44
description = "Build script and runtime Tauri plugin definitions"
55
authors = { workspace = true }
66
homepage = { workspace = true }
@@ -30,7 +30,7 @@ runtime = [ ]
3030
[dependencies]
3131
anyhow = { version = "1", optional = true }
3232
serde = { version = "1", optional = true }
33-
tauri-utils = { version = "2.0.0-rc.2", default-features = false, features = [ "build" ], path = "../tauri-utils" }
33+
tauri-utils = { version = "2.0.0-rc.3", default-features = false, features = [ "build" ], path = "../tauri-utils" }
3434
serde_json = { version = "1", optional = true }
3535
glob = { version = "0.3", optional = true }
3636
toml = { version = "0.8", optional = true }

0 commit comments

Comments
 (0)