Skip to content

Commit ab4e56f

Browse files
apply version updates (tauri-apps#10532)
Co-authored-by: lucasfernog <[email protected]>
1 parent f5dfc02 commit ab4e56f

26 files changed

+138
-46
lines changed

.changes/pre.json

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"tag": "rc",
33
"changes": [
44
".changes/android-dev-open-adb-fix.md",
5+
".changes/android-gradle-8-9.md",
56
".changes/asset-resolver-dev-fallback.md",
67
".changes/change-pr-10435.md",
78
".changes/change-pr-10498.md",
@@ -15,6 +16,7 @@
1516
".changes/fix-conf-parsing-error-filepath.md",
1617
".changes/fix-usage-without-compression.md",
1718
".changes/ios-custom-project-template.md",
19+
".changes/ios-default-minversion.md",
1820
".changes/ios-frameworks.md",
1921
".changes/isolation-main-frame-origin.md",
2022
".changes/linux-option-gtk-app-id.md",

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/tauri-build/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.0-rc.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.1]
411

512
### Dependencies

core/tauri-build/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-build"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
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.1", path = "../tauri-codegen", optional = true }
32-
tauri-utils = { version = "2.0.0-rc.1", path = "../tauri-utils", features = [ "build", "resources" ] }
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" ] }
3333
cargo_toml = "0.17"
3434
serde = "1"
3535
serde_json = "1"

core/tauri-codegen/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
### Dependencies

core/tauri-codegen/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-codegen"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
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.1", path = "../tauri-utils", features = [ "build" ] }
23+
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils", features = [ "build" ] }
2424
thiserror = "1"
2525
walkdir = "2"
2626
brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

core/tauri-macros/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.0-rc.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.1]
411

512
### Dependencies

core/tauri-macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-macros"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
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.1", default-features = false, path = "../tauri-codegen" }
24-
tauri-utils = { version = "2.0.0-rc.1", path = "../tauri-utils" }
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" }
2525

2626
[features]
2727
custom-protocol = [ ]

core/tauri-plugin/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
### Dependencies

core/tauri-plugin/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-plugin"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
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.1", default-features = false, features = [ "build" ], path = "../tauri-utils" }
33+
tauri-utils = { version = "2.0.0-rc.2", 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 }

core/tauri-runtime-wry/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## \[2.0.0-rc.2]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.0.0-rc.1]
411

512
### Dependencies

core/tauri-runtime-wry/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-runtime-wry"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Wry bindings to the Tauri runtime"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -15,8 +15,8 @@ rust-version = { workspace = true }
1515
[dependencies]
1616
wry = { version = "0.41", default-features = false, features = [ "drag-drop", "protocol", "os-webview" ] }
1717
tao = { version = "0.28.1", default-features = false, features = [ "rwh_06" ] }
18-
tauri-runtime = { version = "2.0.0-rc.1", path = "../tauri-runtime" }
19-
tauri-utils = { version = "2.0.0-rc.1", path = "../tauri-utils" }
18+
tauri-runtime = { version = "2.0.0-rc.2", path = "../tauri-runtime" }
19+
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils" }
2020
raw-window-handle = "0.6"
2121
http = "1.1"
2222
url = "2"

core/tauri-runtime/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
### Dependencies

core/tauri-runtime/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-runtime"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Runtime for Tauri applications"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -29,7 +29,7 @@ targets = [
2929
serde = { version = "1.0", features = [ "derive" ] }
3030
serde_json = "1.0"
3131
thiserror = "1.0"
32-
tauri-utils = { version = "2.0.0-rc.1", path = "../tauri-utils" }
32+
tauri-utils = { version = "2.0.0-rc.2", path = "../tauri-utils" }
3333
http = "1.1"
3434
raw-window-handle = "0.6"
3535
url = { version = "2" }

core/tauri-utils/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-rc.2]
4+
5+
### Bug Fixes
6+
7+
- [`f5dfc0280`](https://www.github.com/tauri-apps/tauri/commit/f5dfc02800dbd3bdee671b032454c49ac7102fb4) ([#10533](https://www.github.com/tauri-apps/tauri/pull/10533) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed an issue causing `tauri ios init` to fail if `iOS.minimumSystemVersion` was not configured explicitly.
8+
39
## \[2.0.0-rc.1]
410

511
### New Features

core/tauri-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-utils"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Utilities for Tauri"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"

core/tauri/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

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

515
### Dependencies

core/tauri/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri"
3-
version = "2.0.0-rc.1"
3+
version = "2.0.0-rc.2"
44
description = "Make tiny, secure apps for all desktop platforms with Tauri"
55
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -51,10 +51,10 @@ uuid = { version = "1", features = [ "v4" ], optional = true }
5151
url = "2"
5252
anyhow = "1.0"
5353
thiserror = "1.0"
54-
tauri-runtime = { version = "2.0.0-rc.1", path = "../tauri-runtime" }
55-
tauri-macros = { version = "2.0.0-rc.1", path = "../tauri-macros" }
56-
tauri-utils = { version = "2.0.0-rc.1", features = [ "resources" ], path = "../tauri-utils" }
57-
tauri-runtime-wry = { version = "2.0.0-rc.1", path = "../tauri-runtime-wry", optional = true }
54+
tauri-runtime = { version = "2.0.0-rc.2", path = "../tauri-runtime" }
55+
tauri-macros = { version = "2.0.0-rc.2", path = "../tauri-macros" }
56+
tauri-utils = { version = "2.0.0-rc.2", features = [ "resources" ], path = "../tauri-utils" }
57+
tauri-runtime-wry = { version = "2.0.0-rc.2", path = "../tauri-runtime-wry", optional = true }
5858
getrandom = "0.2"
5959
serde_repr = "0.1"
6060
state = "0.6"
@@ -110,8 +110,8 @@ swift-rs = "1.0.6"
110110

111111
[build-dependencies]
112112
heck = "0.5"
113-
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-rc.1" }
114-
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-rc.1", features = [ "build" ] }
113+
tauri-build = { path = "../tauri-build/", default-features = false, version = "2.0.0-rc.2" }
114+
tauri-utils = { path = "../tauri-utils/", version = "2.0.0-rc.2", features = [ "build" ] }
115115

116116
[dev-dependencies]
117117
proptest = "1.4.0"

tooling/bundler/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

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

511
### Bug Fixes

tooling/bundler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ workspace = { }
22

33
[package]
44
name = "tauri-bundler"
5-
version = "2.0.1-rc.0"
5+
version = "2.0.1-rc.1"
66
authors = [
77
"George Burton <[email protected]>",
88
"Tauri Programme within The Commons Conservancy"
@@ -17,7 +17,7 @@ rust-version = "1.70"
1717
exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
1818

1919
[dependencies]
20-
tauri-utils = { version = "2.0.0-rc.1", path = "../../core/tauri-utils", features = [ "resources" ] }
20+
tauri-utils = { version = "2.0.0-rc.2", path = "../../core/tauri-utils", features = [ "resources" ] }
2121
image = "0.24.9"
2222
flate2 = "1.0"
2323
anyhow = "1.0"

tooling/cli/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[2.0.0-rc.3]
4+
5+
### Enhancements
6+
7+
- [`5f56cb0a8`](https://www.github.com/tauri-apps/tauri/commit/5f56cb0a8b9c6f695bc6439a8db997c98b3a3997) ([#10507](https://www.github.com/tauri-apps/tauri/pull/10507) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Update gradle to 8.9 and the gradle android plugin to 8.5.1 in the android templates (requires latest Android Studio). This should add support for Java 21 but Java 17 keeps being the recommended version.
8+
9+
### Bug Fixes
10+
11+
- [`f5dfc0280`](https://www.github.com/tauri-apps/tauri/commit/f5dfc02800dbd3bdee671b032454c49ac7102fb4) ([#10533](https://www.github.com/tauri-apps/tauri/pull/10533) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Fixed an issue causing `tauri ios init` to fail if `iOS.minimumSystemVersion` was not configured explicitly.
12+
13+
### Dependencies
14+
15+
- Upgraded to `[email protected]`
16+
- Upgraded to `[email protected]`
17+
318
## \[2.0.0-rc.2]
419

520
### New Features

0 commit comments

Comments
 (0)