Forráskód Böngészése

Apply Version Updates From Current Changes (#2467)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 4 éve
szülő
commit
431e9e44e4

+ 3 - 0
.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",

+ 7 - 0
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).

+ 1 - 1
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"

+ 5 - 0
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.

+ 1 - 1
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": {

+ 2 - 2
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"
 }