mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-26 04:03:29 +03:00
Apply Version Updates From Current Changes (#3468)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
parent
5999379fb0
commit
82b7f51956
@ -43,7 +43,9 @@
|
||||
".changes/clap-beta.4-core.md",
|
||||
".changes/clap-beta.4.md",
|
||||
".changes/cli-config-path.md",
|
||||
".changes/cli-improve-waiting-devserver-msg.md",
|
||||
".changes/cli-include-vswhere.md",
|
||||
".changes/cli-private-key-pwd-panic.md",
|
||||
".changes/cli-runner-args.md",
|
||||
".changes/cli-runner-error-message.md",
|
||||
".changes/cli.js-cjs-output.md",
|
||||
@ -78,13 +80,16 @@
|
||||
".changes/expose-escape-json-string.md",
|
||||
".changes/fix-asset-protocol-panicking.md",
|
||||
".changes/fix-block-on-runtime.md",
|
||||
".changes/fix-cli-lookup.md",
|
||||
".changes/fix-cli-prompts.md",
|
||||
".changes/fix-cli-signer-sign-cmd.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",
|
||||
".changes/fix-default-freeze-prototype.md",
|
||||
".changes/fix-dialog-default-path.md",
|
||||
".changes/fix-drop-sync.md",
|
||||
".changes/fix-ease-plugin-hook-requirements.md",
|
||||
".changes/fix-focus-blur-events-wry.md",
|
||||
".changes/fix-focus-blur-events.md",
|
||||
@ -95,15 +100,18 @@
|
||||
".changes/fix-out-dir-detection.md",
|
||||
".changes/fix-path-resolution-node_modules.md",
|
||||
".changes/fix-ready-check.md",
|
||||
".changes/fix-runtime-traits-requirements.md",
|
||||
".changes/fix-tray-command.md",
|
||||
".changes/fix-tray-remove-windows.md",
|
||||
".changes/fix-updater-percent-decode.md",
|
||||
".changes/fix-window-created-listen.md",
|
||||
".changes/fix-window-label-api.md",
|
||||
".changes/fix-window-specific-event-system.md",
|
||||
".changes/fix-windows-sidecar.md",
|
||||
".changes/fix-yarn-pnp.md",
|
||||
".changes/fixed-webview2-runtime.md",
|
||||
".changes/force-updater-public-key.md",
|
||||
".changes/fs-endpoints-context.md",
|
||||
".changes/get-menu.md",
|
||||
".changes/going-rc.md",
|
||||
".changes/http-refactor.md",
|
||||
@ -115,8 +123,10 @@
|
||||
".changes/link-stop-propagation.md",
|
||||
".changes/linux-cors.md",
|
||||
".changes/linux-run-return.md",
|
||||
".changes/macos-deployment-target.md",
|
||||
".changes/main-thread-api-calls.md",
|
||||
".changes/menu-with-items-constructor.md",
|
||||
".changes/minimum-mac-version.md",
|
||||
".changes/misign-update.md",
|
||||
".changes/mock-functions.md",
|
||||
".changes/mutable-callbacks.md",
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.3]
|
||||
|
||||
- Automatically emit `cargo:rustc-env=MACOSX_DEPLOYMENT_TARGET` with the value set on `tauri.conf.json > tauri > bundle > macos > minimumSystemVersion`.
|
||||
- [4bacea5b](https://www.github.com/tauri-apps/tauri/commit/4bacea5bf48ea5ca6c9bdd10e28e85e67a0c6ef9) feat(core): set `MACOSX_DEPLOYMENT_TARGET` environment variable, closes [#2732](https://www.github.com/tauri-apps/tauri/pull/2732) ([#3496](https://www.github.com/tauri-apps/tauri/pull/3496)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Rerun if sidecar or resource change.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-build"
|
||||
version = "1.0.0-rc.2"
|
||||
version = "1.0.0-rc.3"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
|
||||
[dependencies]
|
||||
anyhow = "1"
|
||||
quote = { version = "1", optional = true }
|
||||
tauri-codegen = { version = "1.0.0-rc.1", path = "../tauri-codegen", optional = true }
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils", features = [ "build", "resources" ] }
|
||||
tauri-codegen = { version = "1.0.0-rc.2", path = "../tauri-codegen", optional = true }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils", features = [ "build", "resources" ] }
|
||||
cargo_toml = "0.11"
|
||||
serde_json = "1"
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Changed the default value for `tauri > bundle > macOS > minimumSystemVersion` to `10.13`.
|
||||
- Bumped due to a bump in tauri-utils.
|
||||
- [fce344b9](https://www.github.com/tauri-apps/tauri/commit/fce344b90b7227f8f5514853c2f885fb24d3648e) feat(core): set default value for `minimum_system_version` to 10.13 ([#3497](https://www.github.com/tauri-apps/tauri/pull/3497)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-codegen"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -20,7 +20,7 @@ proc-macro2 = "1"
|
||||
quote = "1"
|
||||
serde = { version = "1", features = [ "derive" ] }
|
||||
serde_json = "1"
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils", features = [ "build" ] }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils", features = [ "build" ] }
|
||||
thiserror = "1"
|
||||
walkdir = "2"
|
||||
zstd = { version = "0.10", optional = true }
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Changed the default value for `tauri > bundle > macOS > minimumSystemVersion` to `10.13`.
|
||||
- Bumped due to a bump in tauri-utils.
|
||||
- [fce344b9](https://www.github.com/tauri-apps/tauri/commit/fce344b90b7227f8f5514853c2f885fb24d3648e) feat(core): set default value for `minimum_system_version` to 10.13 ([#3497](https://www.github.com/tauri-apps/tauri/pull/3497)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-macros"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "os", "filesystem", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -20,8 +20,8 @@ proc-macro2 = "1"
|
||||
quote = "1"
|
||||
syn = { version = "1", features = [ "full" ] }
|
||||
heck = "0.4"
|
||||
tauri-codegen = { version = "1.0.0-rc.1", default-features = false, path = "../tauri-codegen" }
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
|
||||
tauri-codegen = { version = "1.0.0-rc.2", default-features = false, path = "../tauri-codegen" }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils" }
|
||||
|
||||
[features]
|
||||
custom-protocol = [ ]
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## \[0.3.2]
|
||||
|
||||
- Fix requirements for `RuntimeHandle`, `ClipboardManager`, `GlobalShortcutHandle` and `TrayHandle`.
|
||||
- Bumped due to a bump in tauri-runtime.
|
||||
- [84895a9c](https://www.github.com/tauri-apps/tauri/commit/84895a9cd270fc743e236d0f4d4cd6210b24a30f) fix(runtime): trait requirements ([#3489](https://www.github.com/tauri-apps/tauri/pull/3489)) on 2022-02-17
|
||||
|
||||
## \[0.3.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-runtime-wry"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -14,8 +14,8 @@ readme = "README.md"
|
||||
|
||||
[dependencies]
|
||||
wry = { version = "0.13.2", default-features = false, features = [ "file-drop", "protocol" ] }
|
||||
tauri-runtime = { version = "0.3.1", path = "../tauri-runtime" }
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
|
||||
tauri-runtime = { version = "0.3.2", path = "../tauri-runtime" }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils" }
|
||||
uuid = { version = "0.8.2", features = [ "v4" ] }
|
||||
infer = "0.4"
|
||||
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[0.3.2]
|
||||
|
||||
- Fix requirements for `RuntimeHandle`, `ClipboardManager`, `GlobalShortcutHandle` and `TrayHandle`.
|
||||
- [84895a9c](https://www.github.com/tauri-apps/tauri/commit/84895a9cd270fc743e236d0f4d4cd6210b24a30f) fix(runtime): trait requirements ([#3489](https://www.github.com/tauri-apps/tauri/pull/3489)) on 2022-02-17
|
||||
|
||||
## \[0.3.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-runtime"
|
||||
version = "0.3.1"
|
||||
version = "0.3.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
@ -26,7 +26,7 @@ targets = [
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde_json = "1.0"
|
||||
thiserror = "1.0"
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils" }
|
||||
uuid = { version = "0.8.2", features = [ "v4" ] }
|
||||
http = "0.2.4"
|
||||
http-range = "0.1.4"
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Changed the default value for `tauri > bundle > macOS > minimumSystemVersion` to `10.13`.
|
||||
- [fce344b9](https://www.github.com/tauri-apps/tauri/commit/fce344b90b7227f8f5514853c2f885fb24d3648e) feat(core): set default value for `minimum_system_version` to 10.13 ([#3497](https://www.github.com/tauri-apps/tauri/pull/3497)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri-utils"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
homepage = "https://tauri.studio"
|
||||
|
@ -1,5 +1,15 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.3]
|
||||
|
||||
- `tauri::plugin::Builder` closures are no longer required to implement `Sync`.
|
||||
- [fb7ee2c9](https://www.github.com/tauri-apps/tauri/commit/fb7ee2c987d9fca23f08bd470789069d9477c66e) drop Sync req from `setup` and `setup_with_config` ([#3471](https://www.github.com/tauri-apps/tauri/pull/3471)) on 2022-02-16
|
||||
- [b8e4d651](https://www.github.com/tauri-apps/tauri/commit/b8e4d651f9866b34bd3afcf2392812a18e1cee53) fix(core): drop all plugin builder Sync requirements ([#3490](https://www.github.com/tauri-apps/tauri/pull/3490)) on 2022-02-17
|
||||
- Added context to the file system endpoint errors.
|
||||
- [06053833](https://www.github.com/tauri-apps/tauri/commit/060538331c138473159cf8fee0fcb7904ca33d3b) feat(core): add context to the filesystem APIs errors, closes [#3457](https://www.github.com/tauri-apps/tauri/pull/3457) ([#3480](https://www.github.com/tauri-apps/tauri/pull/3480)) on 2022-02-16
|
||||
- Changed the default value for `tauri > bundle > macOS > minimumSystemVersion` to `10.13`.
|
||||
- [fce344b9](https://www.github.com/tauri-apps/tauri/commit/fce344b90b7227f8f5514853c2f885fb24d3648e) feat(core): set default value for `minimum_system_version` to 10.13 ([#3497](https://www.github.com/tauri-apps/tauri/pull/3497)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Ease the requirements for plugin hooks. `setup` and `setup_with_config` can now be `FnOnce` and `on_webview_ready`, `on_event` and `on_page_load` can be `FnMut`.
|
||||
|
@ -16,7 +16,7 @@ license = "Apache-2.0 OR MIT"
|
||||
name = "tauri"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/tauri-apps/tauri"
|
||||
version = "1.0.0-rc.2"
|
||||
version = "1.0.0-rc.3"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
default-features = false
|
||||
@ -53,10 +53,10 @@ url = { version = "2.2" }
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
once_cell = "1.9"
|
||||
tauri-runtime = { version = "0.3.1", path = "../tauri-runtime" }
|
||||
tauri-macros = { version = "1.0.0-rc.1", path = "../tauri-macros" }
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../tauri-utils" }
|
||||
tauri-runtime-wry = { version = "0.3.1", path = "../tauri-runtime-wry", optional = true }
|
||||
tauri-runtime = { version = "0.3.2", path = "../tauri-runtime" }
|
||||
tauri-macros = { version = "1.0.0-rc.2", path = "../tauri-macros" }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../tauri-utils" }
|
||||
tauri-runtime-wry = { version = "0.3.2", path = "../tauri-runtime-wry", optional = true }
|
||||
rand = "0.8"
|
||||
semver = "1.0"
|
||||
serde_repr = "0.1"
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.2]
|
||||
|
||||
- Fixes sidecar bundling on Windows.
|
||||
- [2ecbed8d](https://www.github.com/tauri-apps/tauri/commit/2ecbed8d59d9e1788170aa87b90ed9556a473425) fix(bundler): sidecar on Windows, closes [#3446](https://www.github.com/tauri-apps/tauri/pull/3446) ([#3482](https://www.github.com/tauri-apps/tauri/pull/3482)) on 2022-02-16
|
||||
|
||||
## \[1.0.0-rc.1]
|
||||
|
||||
- Change default value for the `freezePrototype` configuration to `false`.
|
||||
|
@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
authors = [
|
||||
"George Burton <burtonageo@gmail.com>",
|
||||
"Tauri Programme within The Commons Conservancy"
|
||||
@ -22,7 +22,7 @@ exclude = [
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../../core/tauri-utils", features = [ "resources" ] }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../../core/tauri-utils", features = [ "resources" ] }
|
||||
ar = "0.9.0"
|
||||
icns = "0.3"
|
||||
image = "0.24.0"
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.6]
|
||||
|
||||
- Improve "waiting for your dev server to start" message.
|
||||
- [5999379f](https://www.github.com/tauri-apps/tauri/commit/5999379fb06052a115f04f99274ab46d1eefd659) chore(cli): improve "waiting for dev server" message, closes [#3491](https://www.github.com/tauri-apps/tauri/pull/3491) ([#3504](https://www.github.com/tauri-apps/tauri/pull/3504)) on 2022-02-18
|
||||
- Do not panic if the updater private key password is wrong.
|
||||
- [17f17a80](https://www.github.com/tauri-apps/tauri/commit/17f17a80f818bcc20c387583a6ff00a8e07ec533) fix(cli): do not panic if private key password is wrong, closes [#3449](https://www.github.com/tauri-apps/tauri/pull/3449) ([#3495](https://www.github.com/tauri-apps/tauri/pull/3495)) on 2022-02-17
|
||||
- Check the current folder before checking the directories on the app and tauri dir path lookup function.
|
||||
- [a06de376](https://www.github.com/tauri-apps/tauri/commit/a06de3760184caa71acfe7a2fe2189a033b565f5) fix(cli): path lookup should not check subfolder before the current one ([#3465](https://www.github.com/tauri-apps/tauri/pull/3465)) on 2022-02-15
|
||||
- Fixes the signature of the `signer sign` command to not have duplicated short flags.
|
||||
- [a9755514](https://www.github.com/tauri-apps/tauri/commit/a975551461f3698db3f3b6afa5101189aaeeada9) fix(cli): duplicated short flag for `signer sign`, closes [#3483](https://www.github.com/tauri-apps/tauri/pull/3483) ([#3492](https://www.github.com/tauri-apps/tauri/pull/3492)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.5]
|
||||
|
||||
- Allow passing arguments to the `build` runner (`tauri build -- <ARGS>...`).
|
||||
|
6
tooling/cli/Cargo.lock
generated
6
tooling/cli/Cargo.lock
generated
@ -2616,7 +2616,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ar",
|
||||
@ -2652,7 +2652,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-rc.5"
|
||||
version = "1.0.0-rc.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
@ -2706,7 +2706,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-utils"
|
||||
version = "1.0.0-rc.1"
|
||||
version = "1.0.0-rc.2"
|
||||
dependencies = [
|
||||
"aes-gcm",
|
||||
"ctor",
|
||||
|
@ -3,7 +3,7 @@ members = [ "node" ]
|
||||
|
||||
[package]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-rc.5"
|
||||
version = "1.0.0-rc.6"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
edition = "2021"
|
||||
rust-version = "1.57"
|
||||
@ -29,7 +29,7 @@ path = "src/main.rs"
|
||||
[dependencies]
|
||||
clap = { version = "3", features = [ "derive" ] }
|
||||
anyhow = "1.0"
|
||||
tauri-bundler = { version = "1.0.0-rc.1", path = "../bundler" }
|
||||
tauri-bundler = { version = "1.0.0-rc.2", path = "../bundler" }
|
||||
colored = "2.0"
|
||||
once_cell = "1.9"
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
@ -39,7 +39,7 @@ notify = "4.0"
|
||||
shared_child = "1.0"
|
||||
toml_edit = "0.13"
|
||||
json-patch = "0.2"
|
||||
tauri-utils = { version = "1.0.0-rc.1", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
|
||||
tauri-utils = { version = "1.0.0-rc.2", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
|
||||
toml = "0.5"
|
||||
valico = "3.6"
|
||||
handlebars = "4.2"
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"cli.js": {
|
||||
"version": "1.0.0-rc.4",
|
||||
"version": "1.0.0-rc.5",
|
||||
"node": ">= 12.13.0"
|
||||
},
|
||||
"tauri": "1.0.0-rc.2",
|
||||
"tauri-build": "1.0.0-rc.2"
|
||||
"tauri": "1.0.0-rc.3",
|
||||
"tauri-build": "1.0.0-rc.3"
|
||||
}
|
||||
|
@ -1,5 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.5]
|
||||
|
||||
- Improve "waiting for your dev server to start" message.
|
||||
- [5999379f](https://www.github.com/tauri-apps/tauri/commit/5999379fb06052a115f04f99274ab46d1eefd659) chore(cli): improve "waiting for dev server" message, closes [#3491](https://www.github.com/tauri-apps/tauri/pull/3491) ([#3504](https://www.github.com/tauri-apps/tauri/pull/3504)) on 2022-02-18
|
||||
- Do not panic if the updater private key password is wrong.
|
||||
- [17f17a80](https://www.github.com/tauri-apps/tauri/commit/17f17a80f818bcc20c387583a6ff00a8e07ec533) fix(cli): do not panic if private key password is wrong, closes [#3449](https://www.github.com/tauri-apps/tauri/pull/3449) ([#3495](https://www.github.com/tauri-apps/tauri/pull/3495)) on 2022-02-17
|
||||
- Check the current folder before checking the directories on the app and tauri dir path lookup function.
|
||||
- [a06de376](https://www.github.com/tauri-apps/tauri/commit/a06de3760184caa71acfe7a2fe2189a033b565f5) fix(cli): path lookup should not check subfolder before the current one ([#3465](https://www.github.com/tauri-apps/tauri/pull/3465)) on 2022-02-15
|
||||
- Fixes the signature of the `signer sign` command to not have duplicated short flags.
|
||||
- [a9755514](https://www.github.com/tauri-apps/tauri/commit/a975551461f3698db3f3b6afa5101189aaeeada9) fix(cli): duplicated short flag for `signer sign`, closes [#3483](https://www.github.com/tauri-apps/tauri/pull/3483) ([#3492](https://www.github.com/tauri-apps/tauri/pull/3492)) on 2022-02-17
|
||||
|
||||
## \[1.0.0-rc.4]
|
||||
|
||||
- Change the `run` function to take a callback and run asynchronously instead of blocking the event loop.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/cli",
|
||||
"version": "1.0.0-rc.4",
|
||||
"version": "1.0.0-rc.5",
|
||||
"description": "Command line interface for building Tauri apps",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
|
Loading…
Reference in New Issue
Block a user