Apply Version Updates From Current Changes (#2467)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-08-17 10:41:30 -03:00 committed by GitHub
parent aecdfaf76f
commit 431e9e44e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 4 deletions

View File

@ -30,6 +30,7 @@
".changes/app-callback.md", ".changes/app-callback.md",
".changes/app-dir-refactor.md", ".changes/app-dir-refactor.md",
".changes/app-handle-create-window.md", ".changes/app-handle-create-window.md",
".changes/app-handle-exit-cleanup.md",
".changes/app-handle.md", ".changes/app-handle.md",
".changes/app-set-activation-policy.md", ".changes/app-set-activation-policy.md",
".changes/app-state.md", ".changes/app-state.md",
@ -218,6 +219,8 @@
".changes/private-context.md", ".changes/private-context.md",
".changes/process-api.md", ".changes/process-api.md",
".changes/product-name-original.md", ".changes/product-name-original.md",
".changes/raw-window-handle-dependency.md",
".changes/readd-esm-cli.js.md",
".changes/refactor-settings.md", ".changes/refactor-settings.md",
".changes/refactor-window-management.md", ".changes/refactor-window-management.md",
".changes/regular-script-invoke-key-injection.md", ".changes/regular-script-invoke-key-injection.md",

View File

@ -1,5 +1,12 @@
# Changelog # 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] ## \[1.0.0-beta.6]
- Adds `set_activation_policy` API to the `tauri::App` struct (macOS only). - Adds `set_activation_policy` API to the `tauri::App` struct (macOS only).

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tauri" name = "tauri"
version = "1.0.0-beta.6" version = "1.0.0-beta.7"
authors = [ "Tauri Programme within The Commons Conservancy" ] authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ] categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT" license = "Apache-2.0 OR MIT"

View File

@ -1,5 +1,10 @@
# Changelog # 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] ## \[1.0.0-beta.8]
- Reverts ESM distribution. - Reverts ESM distribution.

View File

@ -1,6 +1,6 @@
{ {
"name": "@tauri-apps/cli", "name": "@tauri-apps/cli",
"version": "1.0.0-beta.8", "version": "1.0.0-beta.9",
"description": "Command line interface for building Tauri apps", "description": "Command line interface for building Tauri apps",
"type": "module", "type": "module",
"bin": { "bin": {

View File

@ -1,8 +1,8 @@
{ {
"cli.js": { "cli.js": {
"version": "1.0.0-beta.8", "version": "1.0.0-beta.9",
"node": ">= 12.13.0" "node": ">= 12.13.0"
}, },
"tauri": "1.0.0-beta.6", "tauri": "1.0.0-beta.7",
"tauri-build": "1.0.0-beta.4" "tauri-build": "1.0.0-beta.4"
} }