Skip to content

Commit 02f85df

Browse files
apply version updates (#10685)
Co-authored-by: lucasfernog <[email protected]>
1 parent 30c7685 commit 02f85df

File tree

26 files changed

+172
-46
lines changed

26 files changed

+172
-46
lines changed

.changes/pre.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@
66
".changes/android-dev-open-adb-fix.md",
77
".changes/android-gradle-8-9.md",
88
".changes/android-port-forward-fixes.md",
9+
".changes/append_invoke_initialization_script.md",
910
".changes/asset-resolver-dev-fallback.md",
11+
".changes/avoid-rebuilds.md",
1012
".changes/brotli-6.md",
13+
".changes/bundler-object-custom-sign-command.md",
1114
".changes/change-default-export-option-debugging.md",
1215
".changes/change-pr-10435.md",
1316
".changes/change-pr-10498.md",
1417
".changes/change-pr-10619.md",
18+
".changes/change-pr-10676.md",
1519
".changes/check-android-lib-symbols.md",
1620
".changes/cli-add-no-fmt.md",
1721
".changes/cli-android-template-androidtv.md",
@@ -21,20 +25,24 @@
2125
".changes/cli-signtool-path.md",
2226
".changes/core-plugin-namespace.md",
2327
".changes/dev-url-localhost-mobile.md",
28+
".changes/enhance-permission-error-message.md",
2429
".changes/feat-remove-target-sdk.md",
2530
".changes/fix-adb.md",
2631
".changes/fix-cli-dev-server-android.md",
2732
".changes/fix-cli-panic-bun.md",
2833
".changes/fix-colon-in-file-path.md",
2934
".changes/fix-conf-parsing-error-filepath.md",
3035
".changes/fix-config-override.md",
36+
".changes/fix-export-default-permissions.md",
37+
".changes/fix-ios-build-older-swift.md",
3138
".changes/fix-ios-bun-support.md",
3239
".changes/fix-ipc-fallback.md",
3340
".changes/fix-manifest-migration.md",
3441
".changes/fix-missing-codesign-error-macos.md",
3542
".changes/fix-tslib-path.md",
3643
".changes/fix-usage-without-compression.md",
3744
".changes/fix-v1-frontend-migration.md",
45+
".changes/fix-xcodebuild-arch.md",
3846
".changes/get-window-async.md",
3947
".changes/improve-cli-init.md",
4048
".changes/infer-signing-identity.md",

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: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## \[2.0.0-rc.4]
4+
5+
### Bug Fixes
6+
7+
- [`5c335ae9a`](https://www.github.com/tauri-apps/tauri/commit/5c335ae9ad88e46c2135a557390f6e808c9a6088) ([#10648](https://www.github.com/tauri-apps/tauri/pull/10648) by [@Flakebi](https://www.github.com/tauri-apps/tauri/../../Flakebi)) Prevent build script from rerunning unnecessarily by only writing files when the content changes.
8+
- [`77844529f`](https://www.github.com/tauri-apps/tauri/commit/77844529f323434919ad6581d54cb2d97500cf4d) ([#10678](https://www.github.com/tauri-apps/tauri/pull/10678) by [@Norbiros](https://www.github.com/tauri-apps/tauri/../../Norbiros)) Correctly export `DefaultPermissionsRule`
9+
10+
### Dependencies
11+
12+
- Upgraded to `[email protected]`
13+
- Upgraded to `[email protected]`
14+
315
## \[2.0.0-rc.3]
416

517
### New Features

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.3"
3+
version = "2.0.0-rc.4"
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.3", path = "../tauri-codegen", optional = true }
32-
tauri-utils = { version = "2.0.0-rc.3", path = "../tauri-utils", features = [ "build", "resources" ] }
31+
tauri-codegen = { version = "2.0.0-rc.4", path = "../tauri-codegen", optional = true }
32+
tauri-utils = { version = "2.0.0-rc.4", 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-rc.4]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.3]
410

511
### 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.3"
3+
version = "2.0.0-rc.4"
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.3", path = "../tauri-utils", features = [ "build" ] }
23+
tauri-utils = { version = "2.0.0-rc.4", 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.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

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.3"
3+
version = "2.0.0-rc.4"
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.3", default-features = false, path = "../tauri-codegen" }
24-
tauri-utils = { version = "2.0.0-rc.3", path = "../tauri-utils" }
23+
tauri-codegen = { version = "2.0.0-rc.4", default-features = false, path = "../tauri-codegen" }
24+
tauri-utils = { version = "2.0.0-rc.4", 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.4]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
39
## \[2.0.0-rc.3]
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.3"
3+
version = "2.0.0-rc.4"
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.3", default-features = false, features = [ "build" ], path = "../tauri-utils" }
33+
tauri-utils = { version = "2.0.0-rc.4", 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)