Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#11014)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasfernog <[email protected]>
  • Loading branch information
github-actions[bot] and lucasfernog committed Sep 15, 2024
1 parent a12bf14 commit b1dacd5
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .changes/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
".changes/change-pr-10619.md",
".changes/change-pr-10676.md",
".changes/change-pr-10718.md",
".changes/change-type-of-macos-webview.md",
".changes/changelog-path-deb.md",
".changes/check-android-lib-symbols.md",
".changes/cli-add-no-fmt.md",
Expand Down Expand Up @@ -134,6 +135,7 @@
".changes/update-tao-wry.md",
".changes/update-trayicon-infer-urlpattern-image.md",
".changes/update-wry.md",
".changes/use-objc2.md",
".changes/utils-autogenerated-command-return-list.md",
".changes/utils-fix-plugin-reference.md",
".changes/v1-migrate-updater.md",
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/tauri-cli/metadata-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "2.0.0-rc.15",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-rc.12",
"tauri": "2.0.0-rc.13",
"tauri-build": "2.0.0-rc.11",
"tauri-plugin": "2.0.0-rc.11"
}
10 changes: 10 additions & 0 deletions crates/tauri-runtime-wry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## \[2.0.0-rc.12]

### Enhancements

- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Use `objc2` internally and in examples, leading to better memory safety.

### Breaking Changes

- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Change the pointer type of `PlatformWebview`'s `inner`, `controller`, `ns_window` and `view_controller` to `c_void`, to avoid publically depending on `objc`.

## \[2.0.0-rc.11]

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion crates/tauri-runtime-wry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "2.0.0-rc.11"
version = "2.0.0-rc.12"
description = "Wry bindings to the Tauri runtime"
exclude = ["CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down
14 changes: 14 additions & 0 deletions crates/tauri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## \[2.0.0-rc.13]

### Enhancements

- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Use `objc2` internally and in examples, leading to better memory safety.

### Dependencies

- Upgraded to `[email protected]`

### Breaking Changes

- [`bc4804d48`](https://www.github.com/tauri-apps/tauri/commit/bc4804d4841efefd57fd1f3e147550a3340e2b31) ([#10924](https://www.github.com/tauri-apps/tauri/pull/10924) by [@madsmtm](https://www.github.com/tauri-apps/tauri/../../madsmtm)) Change the pointer type of `PlatformWebview`'s `inner`, `controller`, `ns_window` and `view_controller` to `c_void`, to avoid publically depending on `objc`.

## \[2.0.0-rc.12]

### New Features
Expand Down
4 changes: 2 additions & 2 deletions crates/tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-rc.12"
version = "2.0.0-rc.13"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"]
readme = "README.md"
Expand Down Expand Up @@ -62,7 +62,7 @@ tauri-macros = { version = "2.0.0-rc.10", path = "../tauri-macros" }
tauri-utils = { version = "2.0.0-rc.11", features = [
"resources",
], path = "../tauri-utils" }
tauri-runtime-wry = { version = "2.0.0-rc.11", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "2.0.0-rc.12", path = "../tauri-runtime-wry", optional = true }
getrandom = "0.2"
serde_repr = "0.1"
state = "0.6"
Expand Down

0 comments on commit b1dacd5

Please sign in to comment.