Skip to content

Commit b85dfe9

Browse files
authored
apply version updates
1 parent 1a60822 commit b85dfe9

File tree

26 files changed

+141
-46
lines changed

26 files changed

+141
-46
lines changed

.changes/pre.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
".changes/enhance-permission-error-message.md",
2929
".changes/feat-remove-target-sdk.md",
3030
".changes/fix-adb.md",
31+
".changes/fix-cli-add-plugin-version.md",
3132
".changes/fix-cli-dev-server-android.md",
3233
".changes/fix-cli-panic-bun.md",
3334
".changes/fix-colon-in-file-path.md",
@@ -46,6 +47,7 @@
4647
".changes/get-window-async.md",
4748
".changes/improve-cli-init.md",
4849
".changes/infer-signing-identity.md",
50+
".changes/inject-mobile-resources.md",
4951
".changes/ios-custom-project-template.md",
5052
".changes/ios-default-minversion.md",
5153
".changes/ios-frameworks.md",
@@ -63,6 +65,8 @@
6365
".changes/refactor-ipc-response.md",
6466
".changes/remove-open-command.md",
6567
".changes/remove-unsecure-configs.md",
68+
".changes/resource-dir-android.md",
69+
".changes/resource-dir-ios.md",
6670
".changes/resources-map-becoming-dirs.md",
6771
".changes/universal-bin-build-fails.md",
6872
".changes/update-tao-wry.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: 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
### Bug Fixes

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

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