mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-24 04:03:52 +03:00
Apply Version Updates From Current Changes (#11014)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
parent
a12bf148d6
commit
b1dacd539a
@ -23,6 +23,7 @@
|
|||||||
".changes/change-pr-10619.md",
|
".changes/change-pr-10619.md",
|
||||||
".changes/change-pr-10676.md",
|
".changes/change-pr-10676.md",
|
||||||
".changes/change-pr-10718.md",
|
".changes/change-pr-10718.md",
|
||||||
|
".changes/change-type-of-macos-webview.md",
|
||||||
".changes/changelog-path-deb.md",
|
".changes/changelog-path-deb.md",
|
||||||
".changes/check-android-lib-symbols.md",
|
".changes/check-android-lib-symbols.md",
|
||||||
".changes/cli-add-no-fmt.md",
|
".changes/cli-add-no-fmt.md",
|
||||||
@ -134,6 +135,7 @@
|
|||||||
".changes/update-tao-wry.md",
|
".changes/update-tao-wry.md",
|
||||||
".changes/update-trayicon-infer-urlpattern-image.md",
|
".changes/update-trayicon-infer-urlpattern-image.md",
|
||||||
".changes/update-wry.md",
|
".changes/update-wry.md",
|
||||||
|
".changes/use-objc2.md",
|
||||||
".changes/utils-autogenerated-command-return-list.md",
|
".changes/utils-autogenerated-command-return-list.md",
|
||||||
".changes/utils-fix-plugin-reference.md",
|
".changes/utils-fix-plugin-reference.md",
|
||||||
".changes/v1-migrate-updater.md",
|
".changes/v1-migrate-updater.md",
|
||||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -7284,7 +7284,7 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri"
|
name = "tauri"
|
||||||
version = "2.0.0-rc.12"
|
version = "2.0.0-rc.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytes",
|
"bytes",
|
||||||
@ -7674,7 +7674,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-runtime-wry"
|
name = "tauri-runtime-wry"
|
||||||
version = "2.0.0-rc.11"
|
version = "2.0.0-rc.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"gtk",
|
"gtk",
|
||||||
"http 1.1.0",
|
"http 1.1.0",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"version": "2.0.0-rc.15",
|
"version": "2.0.0-rc.15",
|
||||||
"node": ">= 10.0.0"
|
"node": ">= 10.0.0"
|
||||||
},
|
},
|
||||||
"tauri": "2.0.0-rc.12",
|
"tauri": "2.0.0-rc.13",
|
||||||
"tauri-build": "2.0.0-rc.11",
|
"tauri-build": "2.0.0-rc.11",
|
||||||
"tauri-plugin": "2.0.0-rc.11"
|
"tauri-plugin": "2.0.0-rc.11"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# 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]
|
## \[2.0.0-rc.11]
|
||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri-runtime-wry"
|
name = "tauri-runtime-wry"
|
||||||
version = "2.0.0-rc.11"
|
version = "2.0.0-rc.12"
|
||||||
description = "Wry bindings to the Tauri runtime"
|
description = "Wry bindings to the Tauri runtime"
|
||||||
exclude = ["CHANGELOG.md", "/target"]
|
exclude = ["CHANGELOG.md", "/target"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -1,5 +1,19 @@
|
|||||||
# Changelog
|
# 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 `tauri-runtime-wry@2.0.0-rc.12`
|
||||||
|
|
||||||
|
### 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]
|
## \[2.0.0-rc.12]
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri"
|
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"
|
description = "Make tiny, secure apps for all desktop platforms with Tauri"
|
||||||
exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"]
|
exclude = ["/test", "/.scripts", "CHANGELOG.md", "/target"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
@ -62,7 +62,7 @@ tauri-macros = { version = "2.0.0-rc.10", path = "../tauri-macros" }
|
|||||||
tauri-utils = { version = "2.0.0-rc.11", features = [
|
tauri-utils = { version = "2.0.0-rc.11", features = [
|
||||||
"resources",
|
"resources",
|
||||||
], path = "../tauri-utils" }
|
], 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"
|
getrandom = "0.2"
|
||||||
serde_repr = "0.1"
|
serde_repr = "0.1"
|
||||||
state = "0.6"
|
state = "0.6"
|
||||||
|
Loading…
Reference in New Issue
Block a user