From 431e9e44e4ece53244e7816eeb2e5ff67bfa007c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Aug 2021 10:41:30 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#2467) Co-authored-by: lucasfernog --- .changes/pre.json | 3 +++ core/tauri/CHANGELOG.md | 7 +++++++ core/tauri/Cargo.toml | 2 +- tooling/cli.js/CHANGELOG.md | 5 +++++ tooling/cli.js/package.json | 2 +- tooling/cli.rs/metadata.json | 4 ++-- 6 files changed, 19 insertions(+), 4 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 6e3fb0336..4d9e0d260 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -30,6 +30,7 @@ ".changes/app-callback.md", ".changes/app-dir-refactor.md", ".changes/app-handle-create-window.md", + ".changes/app-handle-exit-cleanup.md", ".changes/app-handle.md", ".changes/app-set-activation-policy.md", ".changes/app-state.md", @@ -218,6 +219,8 @@ ".changes/private-context.md", ".changes/process-api.md", ".changes/product-name-original.md", + ".changes/raw-window-handle-dependency.md", + ".changes/readd-esm-cli.js.md", ".changes/refactor-settings.md", ".changes/refactor-window-management.md", ".changes/regular-script-invoke-key-injection.md", diff --git a/core/tauri/CHANGELOG.md b/core/tauri/CHANGELOG.md index a366843e2..9416f95e0 100644 --- a/core/tauri/CHANGELOG.md +++ b/core/tauri/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[1.0.0-beta.7] + +- Cleanup application on `AppHandle#exit`. + - [a54bba6c](https://www.github.com/tauri-apps/tauri/commit/a54bba6c868508844d68a9f4ea9f5519a2b94d09) fix(core): cleanup app before exit, closes [#2464](https://www.github.com/tauri-apps/tauri/pull/2464) ([#2466](https://www.github.com/tauri-apps/tauri/pull/2466)) on 2021-08-17 +- Fix `raw-window-handle` dependency declaration. + - [aecdfaf7](https://www.github.com/tauri-apps/tauri/commit/aecdfaf76fcf0d2820d6ce6eb7590ebe399bfa04) fix(core): `raw-window-handle` dependency, closes [#2460](https://www.github.com/tauri-apps/tauri/pull/2460) ([#2465](https://www.github.com/tauri-apps/tauri/pull/2465)) on 2021-08-17 + ## \[1.0.0-beta.6] - Adds `set_activation_policy` API to the `tauri::App` struct (macOS only). diff --git a/core/tauri/Cargo.toml b/core/tauri/Cargo.toml index 0c3517a8b..91d7b47d1 100644 --- a/core/tauri/Cargo.toml +++ b/core/tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tauri" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" authors = [ "Tauri Programme within The Commons Conservancy" ] categories = [ "gui", "web-programming" ] license = "Apache-2.0 OR MIT" diff --git a/tooling/cli.js/CHANGELOG.md b/tooling/cli.js/CHANGELOG.md index 13658fc1b..c82703e8a 100644 --- a/tooling/cli.js/CHANGELOG.md +++ b/tooling/cli.js/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[1.0.0-beta.9] + +- The CLI is now an ES module and requires at least Node.js v12.20. Fixed previous releases by using Rollup instead of Webpack. + - [8d1fe0ea](https://www.github.com/tauri-apps/tauri/commit/8d1fe0ea056f4ef0ab0a90c89c6391f3e3185bc7) feat(cli.js): readd ESM distribution ([#2468](https://www.github.com/tauri-apps/tauri/pull/2468)) on 2021-08-17 + ## \[1.0.0-beta.8] - Reverts ESM distribution. diff --git a/tooling/cli.js/package.json b/tooling/cli.js/package.json index 2ad65bfda..f2eb04d5e 100644 --- a/tooling/cli.js/package.json +++ b/tooling/cli.js/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.0.0-beta.8", + "version": "1.0.0-beta.9", "description": "Command line interface for building Tauri apps", "type": "module", "bin": { diff --git a/tooling/cli.rs/metadata.json b/tooling/cli.rs/metadata.json index 0967eb7c9..1645549ce 100644 --- a/tooling/cli.rs/metadata.json +++ b/tooling/cli.rs/metadata.json @@ -1,8 +1,8 @@ { "cli.js": { - "version": "1.0.0-beta.8", + "version": "1.0.0-beta.9", "node": ">= 12.13.0" }, - "tauri": "1.0.0-beta.6", + "tauri": "1.0.0-beta.7", "tauri-build": "1.0.0-beta.4" }