Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#10865)
Browse files Browse the repository at this point in the history
* apply version updates

* fix audit

---------

Co-authored-by: lucasfernog <[email protected]>
Co-authored-by: Lucas Nogueira <[email protected]>
  • Loading branch information
3 people committed Sep 4, 2024
1 parent bdfa953 commit a655d9c
Show file tree
Hide file tree
Showing 27 changed files with 208 additions and 77 deletions.
10 changes: 10 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"changes": [
".changes/add-notarize-error.md",
".changes/allow-commands-by-default.md",
".changes/always-enable-linux-ipc-custom-protocol.md",
".changes/android-dev-open-adb-fix.md",
".changes/android-gradle-8-9.md",
".changes/android-port-forward-fixes.md",
Expand All @@ -12,6 +13,7 @@
".changes/avoid-rebuilds.md",
".changes/brotli-6.md",
".changes/bundler-object-custom-sign-command.md",
".changes/capability-id-already-exists.md",
".changes/change-default-export-option-debugging.md",
".changes/change-pr-10435.md",
".changes/change-pr-10498.md",
Expand All @@ -30,6 +32,8 @@
".changes/core-plugin-namespace.md",
".changes/dev-url-localhost-mobile.md",
".changes/do-not-exit-on-log-fail.md",
".changes/embed-plist-no-unit-val.md",
".changes/enhance-ios-lib-validation.md",
".changes/enhance-permission-error-message.md",
".changes/ensure-gradlew-unix.md",
".changes/feat-remove-target-sdk.md",
Expand All @@ -46,9 +50,11 @@
".changes/fix-export-default-permissions.md",
".changes/fix-ios-automatic-signing-ci.md",
".changes/fix-ios-build-older-swift.md",
".changes/fix-ios-build-simulator.md",
".changes/fix-ios-bun-support.md",
".changes/fix-ios-signing-api-key.md",
".changes/fix-ipc-fallback.md",
".changes/fix-isolation-parse-raw-body.md",
".changes/fix-manifest-migration.md",
".changes/fix-missing-codesign-error-macos.md",
".changes/fix-tauri-plugin-ios-init.md",
Expand All @@ -64,6 +70,7 @@
".changes/ios-custom-project-template.md",
".changes/ios-default-minversion.md",
".changes/ios-frameworks.md",
".changes/ios-invoke-response-null.md",
".changes/isolation-main-frame-origin.md",
".changes/linux-option-gtk-app-id.md",
".changes/maintainer-fallback.md",
Expand Down Expand Up @@ -92,6 +99,8 @@
".changes/resource-dir-ios.md",
".changes/resources-map-becoming-dirs.md",
".changes/rust-permission-state.md",
".changes/safe-file-path-serialize.md",
".changes/safe-path-buf-from-str.md",
".changes/serialize-array-buffer.md",
".changes/synchronize-config-and-xcode-project.md",
".changes/synchronize-pbxproj-export-options.md",
Expand All @@ -103,6 +112,7 @@
".changes/update-docs-icon-path.md",
".changes/update-pbxproj-codesign.md",
".changes/update-tao-wry.md",
".changes/update-wry.md",
".changes/utils-autogenerated-command-return-list.md",
".changes/utils-fix-plugin-reference.md",
".changes/v1-migrate-updater.md",
Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/tauri-build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[2.0.0-rc.8]

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-rc.7]

### New Features
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-rc.7"
version = "2.0.0-rc.8"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down Expand Up @@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "2.0.0-rc.7", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.7", path = "../tauri-utils", features = [
tauri-codegen = { version = "2.0.0-rc.8", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "2.0.0-rc.8", path = "../tauri-utils", features = [
"build",
"resources",
] }
Expand Down
6 changes: 6 additions & 0 deletions crates/tauri-bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## \[2.0.1-rc.8]

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.1-rc.7]

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri-bundler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-bundler"
version = "2.0.1-rc.7"
version = "2.0.1-rc.8"
authors = [
"George Burton <[email protected]>",
"Tauri Programme within The Commons Conservancy",
Expand All @@ -15,7 +15,7 @@ rust-version = "1.71"
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]

[dependencies]
tauri-utils = { version = "2.0.0-rc.7", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.8", path = "../tauri-utils", features = [
"resources",
] }
image = "0.25.0"
Expand Down
15 changes: 15 additions & 0 deletions crates/tauri-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## \[2.0.0-rc.10]

### Enhancements

- [`9c9644d15`](https://www.github.com/tauri-apps/tauri/commit/9c9644d155818d9efcad65b60aa985a59e767922) ([#10845](https://www.github.com/tauri-apps/tauri/pull/10845) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Enhance iOS library validation, checking libs built with link time optimization.

### Bug Fixes

- [`b42683592`](https://www.github.com/tauri-apps/tauri/commit/b42683592d446f25c2005b59e9e3ec551175906d) ([#10847](https://www.github.com/tauri-apps/tauri/pull/10847) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build --target [aarch64-sim | x86_64]` failing to generate the app bundle for the iOS simulator.

### Dependencies

- Upgraded to `[email protected]`
- Upgraded to `[email protected]`

## \[2.0.0-rc.9]

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions crates/tauri-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-cli"
version = "2.0.0-rc.9"
version = "2.0.0-rc.10"
authors = ["Tauri Programme within The Commons Conservancy"]
edition = "2021"
rust-version = "1.71"
Expand Down Expand Up @@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
clap_complete = "4"
clap = { version = "4.5", features = ["derive", "env"] }
anyhow = "1.0"
tauri-bundler = { version = "2.0.1-rc.6", default-features = false, path = "../tauri-bundler" }
tauri-bundler = { version = "2.0.1-rc.8", default-features = false, path = "../tauri-bundler" }
colored = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
Expand All @@ -57,7 +57,7 @@ shared_child = "1.0"
duct = "0.13"
toml_edit = { version = "0.22", features = ["serde"] }
json-patch = "2.0"
tauri-utils = { version = "2.0.0-rc.7", path = "../tauri-utils", features = [
tauri-utils = { version = "2.0.0-rc.8", path = "../tauri-utils", features = [
"isolation",
"schema",
"config-json5",
Expand Down
8 changes: 4 additions & 4 deletions crates/tauri-cli/metadata-v2.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"cli.js": {
"version": "2.0.0-rc.10",
"version": "2.0.0-rc.11",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-rc.8",
"tauri-build": "2.0.0-rc.7",
"tauri-plugin": "2.0.0-rc.7"
"tauri": "2.0.0-rc.9",
"tauri-build": "2.0.0-rc.8",
"tauri-plugin": "2.0.0-rc.8"
}
10 changes: 10 additions & 0 deletions crates/tauri-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-rc.8]

### What's Changed

- [`27d018343`](https://www.github.com/tauri-apps/tauri/commit/27d01834312ee7953b6ccd5b0a368e7a69b225e9) ([#10844](https://www.github.com/tauri-apps/tauri/pull/10844) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Changes how the Info.plist is embedded on macOS development to avoid a clippy warning.

### Dependencies

- Upgraded to `[email protected]`

## \[2.0.0-rc.7]

### Bug Fixes
Expand Down
Loading

0 comments on commit a655d9c

Please sign in to comment.