mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
Apply Version Updates From Current Changes (#3401)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
41052deeda
commit
fe0cfea03e
@@ -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",
|
||||
|
||||
@@ -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.
|
||||
|
||||
2
tooling/cli/Cargo.lock
generated
2
tooling/cli/Cargo.lock
generated
@@ -2727,7 +2727,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user