From fe0cfea03ef01c23996ec7e2f9acbce439ebb653 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Feb 2022 14:13:00 -0300 Subject: [PATCH] Apply Version Updates From Current Changes (#3401) Co-authored-by: lucasfernog --- .changes/pre.json | 3 +++ tooling/cli/CHANGELOG.md | 11 +++++++++++ tooling/cli/Cargo.lock | 2 +- tooling/cli/Cargo.toml | 2 +- tooling/cli/metadata.json | 2 +- tooling/cli/node/CHANGELOG.md | 11 +++++++++++ tooling/cli/node/package.json | 2 +- 7 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.changes/pre.json b/.changes/pre.json index 35e4b551c..2cd57d2fe 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -77,6 +77,8 @@ ".changes/expose-escape-json-string.md", ".changes/fix-asset-protocol-panicking.md", ".changes/fix-block-on-runtime.md", + ".changes/fix-cli-prompts.md", + ".changes/fix-cli.js-windows-freezing.md", ".changes/fix-close-requested-js-event.md", ".changes/fix-deadlock-create-window-from-menu.md", ".changes/fix-deadlock-path-iter.md", @@ -113,6 +115,7 @@ ".changes/notification-regression.md", ".changes/open-devtools.md", ".changes/package-json-configure-app-path.md", + ".changes/perf-cli-dir-lookup.md", ".changes/plugin-builder.md", ".changes/plugin-command.md", ".changes/plugin-on_event.md", diff --git a/tooling/cli/CHANGELOG.md b/tooling/cli/CHANGELOG.md index bfb8be5fa..de3e63bf7 100644 --- a/tooling/cli/CHANGELOG.md +++ b/tooling/cli/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[1.0.0-rc.2] + +- Fix `init` command prompting for values even if the argument has been provided on the command line. + - [def76840](https://www.github.com/tauri-apps/tauri/commit/def76840257a1447723ecda13c807cf0c881f083) fix(cli.rs): do not prompt for `init` values if arg set ([#3400](https://www.github.com/tauri-apps/tauri/pull/3400)) on 2022-02-11 + - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11 +- Fixes CLI freezing when running `light.exe` on Windows without the `--verbose` flag. + - [8beab636](https://www.github.com/tauri-apps/tauri/commit/8beab6363491e2a8757cc9fc0fa1eccc98ece916) fix(cli): build freezing on Windows, closes [#3399](https://www.github.com/tauri-apps/tauri/pull/3399) ([#3402](https://www.github.com/tauri-apps/tauri/pull/3402)) on 2022-02-11 +- Respect `.gitignore` configuration when looking for the folder with the `tauri.conf.json` file. + - [9c6c5a8c](https://www.github.com/tauri-apps/tauri/commit/9c6c5a8c52c6460d0b0a1a55300e1828262994ba) perf(cli.rs): improve performance of tauri dir lookup reading .gitignore ([#3405](https://www.github.com/tauri-apps/tauri/pull/3405)) on 2022-02-11 + - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11 + ## \[1.0.0-rc.1] - Include `vswhere.exe` on the published package. diff --git a/tooling/cli/Cargo.lock b/tooling/cli/Cargo.lock index 68118faed..81ea5dc2a 100644 --- a/tooling/cli/Cargo.lock +++ b/tooling/cli/Cargo.lock @@ -2727,7 +2727,7 @@ dependencies = [ [[package]] name = "tauri-cli" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" dependencies = [ "anyhow", "base64", diff --git a/tooling/cli/Cargo.toml b/tooling/cli/Cargo.toml index 186243b65..9a1a58e0a 100644 --- a/tooling/cli/Cargo.toml +++ b/tooling/cli/Cargo.toml @@ -3,7 +3,7 @@ members = [ "node" ] [package] name = "tauri-cli" -version = "1.0.0-rc.1" +version = "1.0.0-rc.2" authors = [ "Tauri Programme within The Commons Conservancy" ] edition = "2021" rust-version = "1.57" diff --git a/tooling/cli/metadata.json b/tooling/cli/metadata.json index 3709b18e2..6adfaa81a 100644 --- a/tooling/cli/metadata.json +++ b/tooling/cli/metadata.json @@ -1,6 +1,6 @@ { "cli.js": { - "version": "1.0.0-rc.0", + "version": "1.0.0-rc.1", "node": ">= 12.13.0" }, "tauri": "1.0.0-rc.0", diff --git a/tooling/cli/node/CHANGELOG.md b/tooling/cli/node/CHANGELOG.md index da07c8a6d..eea9218c9 100644 --- a/tooling/cli/node/CHANGELOG.md +++ b/tooling/cli/node/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[1.0.0-rc.1] + +- Fix `init` command prompting for values even if the argument has been provided on the command line. + - [def76840](https://www.github.com/tauri-apps/tauri/commit/def76840257a1447723ecda13c807cf0c881f083) fix(cli.rs): do not prompt for `init` values if arg set ([#3400](https://www.github.com/tauri-apps/tauri/pull/3400)) on 2022-02-11 + - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11 +- Fixes CLI freezing when running `light.exe` on Windows without the `--verbose` flag. + - [8beab636](https://www.github.com/tauri-apps/tauri/commit/8beab6363491e2a8757cc9fc0fa1eccc98ece916) fix(cli): build freezing on Windows, closes [#3399](https://www.github.com/tauri-apps/tauri/pull/3399) ([#3402](https://www.github.com/tauri-apps/tauri/pull/3402)) on 2022-02-11 +- Respect `.gitignore` configuration when looking for the folder with the `tauri.conf.json` file. + - [9c6c5a8c](https://www.github.com/tauri-apps/tauri/commit/9c6c5a8c52c6460d0b0a1a55300e1828262994ba) perf(cli.rs): improve performance of tauri dir lookup reading .gitignore ([#3405](https://www.github.com/tauri-apps/tauri/pull/3405)) on 2022-02-11 + - [41052dee](https://www.github.com/tauri-apps/tauri/commit/41052deeda2a00ee2b8ec2041c9c87c11de82ab2) fix(covector): add cli.js to change files on 2022-02-11 + ## \[1.0.0-rc.0] - Do not force Tauri application code on `src-tauri` folder and use a glob pattern to look for a subfolder with a `tauri.conf.json` file. diff --git a/tooling/cli/node/package.json b/tooling/cli/node/package.json index 05533b8d7..3c692074b 100644 --- a/tooling/cli/node/package.json +++ b/tooling/cli/node/package.json @@ -1,6 +1,6 @@ { "name": "@tauri-apps/cli", - "version": "1.0.0-rc.0", + "version": "1.0.0-rc.1", "description": "Command line interface for building Tauri apps", "funding": { "type": "opencollective",