Apply Version Updates From Current Changes (#3798)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-03-28 22:52:37 -03:00 committed by GitHub
parent 06aa87b65f
commit a144e92993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 4 deletions

View File

@ -121,6 +121,7 @@
".changes/fix-inner-size.md",
".changes/fix-linux-resource-path.md",
".changes/fix-menu-ids.md",
".changes/fix-on-window-event-type.md",
".changes/fix-once-fnonce.md",
".changes/fix-out-dir-detection.md",
".changes/fix-path-resolution-node_modules.md",
@ -140,6 +141,7 @@
".changes/fix-window-specific-event-system.md",
".changes/fix-windows-resources.md",
".changes/fix-windows-sidecar.md",
".changes/fix-wry-window-destroyed-event.md",
".changes/fix-yarn-pnp.md",
".changes/fixed-webview2-runtime.md",
".changes/force-updater-public-key.md",

View File

@ -1,5 +1,10 @@
# Changelog
## \[0.3.5]
- Fixes `WindowEvent::Destroyed` not firing.
- [169b5035](https://www.github.com/tauri-apps/tauri/commit/169b5035a93e3f33a420d4b2b0f8943e6404e07f) fix(core): actually fire `WindowEvent::Destroyed` ([#3797](https://www.github.com/tauri-apps/tauri/pull/3797)) on 2022-03-28
## \[0.3.4]
- Added `close_devtools` and `is_devtools_open` APIs to the `Dispatch` trait.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "0.3.4"
version = "0.3.5"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.0-rc.6]
- Fixes the `WindowEvent` type used on `Window::on_window_event`.
- [06aa87b6](https://www.github.com/tauri-apps/tauri/commit/06aa87b65f4608ded0dc312d526e83065618a1c8) fix(core): `WindowEvent` type used on `Window::on_window_event` ([#3796](https://www.github.com/tauri-apps/tauri/pull/3796)) on 2022-03-28
- Fixes `WindowEvent::Destroyed` not firing.
- [169b5035](https://www.github.com/tauri-apps/tauri/commit/169b5035a93e3f33a420d4b2b0f8943e6404e07f) fix(core): actually fire `WindowEvent::Destroyed` ([#3797](https://www.github.com/tauri-apps/tauri/pull/3797)) on 2022-03-28
## \[1.0.0-rc.5]
- Added `updater_target` method to the `Builder` struct.

View File

@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
name = "tauri"
readme = "README.md"
repository = "https://github.com/tauri-apps/tauri"
version = "1.0.0-rc.5"
version = "1.0.0-rc.6"
[package.metadata.docs.rs]
no-default-features = true
@ -54,7 +54,7 @@ once_cell = "1.10"
tauri-runtime = { version = "0.3.4", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.0-rc.4", path = "../tauri-macros" }
tauri-utils = { version = "1.0.0-rc.4", path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.3.4", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "0.3.5", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
semver = "1.0"
serde_repr = "0.1"

View File

@ -3,6 +3,6 @@
"version": "1.0.0-rc.7",
"node": ">= 12.13.0"
},
"tauri": "1.0.0-rc.5",
"tauri": "1.0.0-rc.6",
"tauri-build": "1.0.0-rc.5"
}