Apply Version Updates From Current Changes (#4650)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-07-14 18:36:35 -03:00 committed by GitHub
parent 89cb252640
commit b1d53426d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 63 additions and 61 deletions

View File

@ -1,6 +0,0 @@
---
"cli.rs": patch
"cli.js": patch
---
Do not capture and force colors of `cargo build` output.

View File

@ -1,5 +0,0 @@
---
"tauri-macros": patch
---
Adjust command imports to fix `items_after_statements` Clippy warning.

View File

@ -1,9 +0,0 @@
---
"tauri-build": patch
"tauri": patch
"tauri-bundler": patch
"cli.rs": patch
"cli.js": patch
---
Reduce the amount of allocations when converting cases.

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": patch
---
Automatically load WiX extensions referenced in fragments.

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": patch
---
Fix AppImage builds by pinning the linuxdeploy version.

View File

@ -1,5 +0,0 @@
---
"tauri-bundler": patch
---
Use `Bin_${sidecarFilename}` as the `Id` of sidecar file on WiX so you can reference it in your WiX fragments.

View File

@ -1,5 +0,0 @@
---
"tauri-macros": patch
---
Remove raw identifier (`r#`) prefix from command arguments.

View File

@ -1,5 +0,0 @@
---
"tauri-codegen": patch
---
Validate `__TAURI_ISOLATION_HOOK__` being set by a file in the isolation application.

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.4]
- Reduce the amount of allocations when converting cases.
- [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
## \[1.0.3]
- Improve configuration deserialization error messages.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "1.0.3"
version = "1.0.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -19,7 +19,7 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
[dependencies]
anyhow = "1"
quote = { version = "1", optional = true }
tauri-codegen = { version = "1.0.3", path = "../tauri-codegen", optional = true }
tauri-codegen = { version = "1.0.4", path = "../tauri-codegen", optional = true }
tauri-utils = { version = "1.0.3", path = "../tauri-utils", features = [ "build", "resources" ] }
cargo_toml = "0.11"
serde_json = "1"

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.4]
- Validate `__TAURI_ISOLATION_HOOK__` being set by a file in the isolation application.
- [3b4ed970](https://www.github.com/tauri-apps/tauri/commit/3b4ed970e663f5bffbfe0358610f9c3f157c513f) feat(codegen): validate `__TAURI_ISOLATION_HOOK__` is referenced ([#4631](https://www.github.com/tauri-apps/tauri/pull/4631)) on 2022-07-11
## \[1.0.3]
- The `TAURI_CONFIG` environment variable now represents the configuration to be merged instead of the entire JSON.

View File

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

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.4]
- Adjust command imports to fix `items_after_statements` Clippy warning.
- [d3e19e34](https://www.github.com/tauri-apps/tauri/commit/d3e19e3420a023cddc46173a2d1f1e6c5a390a1b) fix(macros): `items_after_statements` Clippy warning, closes [#4639](https://www.github.com/tauri-apps/tauri/pull/4639) on 2022-07-11
- Remove raw identifier (`r#`) prefix from command arguments.
- [ac72800f](https://www.github.com/tauri-apps/tauri/commit/ac72800fb630738e2502569935ecdc83e3e78055) fix(macros): strip `r#` from command arguments, closes [#4654](https://www.github.com/tauri-apps/tauri/pull/4654) ([#4657](https://www.github.com/tauri-apps/tauri/pull/4657)) on 2022-07-12
## \[1.0.3]
- Add `#[doc(hidden)]` attribute to the `#[command]` generated macro.

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-macros"
version = "1.0.3"
version = "1.0.4"
authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "os", "filesystem", "web-programming" ]
license = "Apache-2.0 OR MIT"
@ -20,7 +20,7 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = [ "full" ] }
heck = "0.4"
tauri-codegen = { version = "1.0.3", default-features = false, path = "../tauri-codegen" }
tauri-codegen = { version = "1.0.4", default-features = false, path = "../tauri-codegen" }
tauri-utils = { version = "1.0.3", path = "../tauri-utils" }
[features]

View File

@ -1,5 +1,10 @@
# Changelog
## \[1.0.4]
- Reduce the amount of allocations when converting cases.
- [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
## \[1.0.3]
- `tauri::Builder` will now include a default menu for macOS without explicitly using `Menu::os_default`, you can still override it through `tauri::Builder::menu` or remove it using `tauri::Builder::enable_macos_default_menu(false)`.

View File

@ -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.3"
version = "1.0.4"
[package.metadata.docs.rs]
no-default-features = true
@ -56,7 +56,7 @@ anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.12"
tauri-runtime = { version = "0.10.2", path = "../tauri-runtime" }
tauri-macros = { version = "1.0.3", path = "../tauri-macros" }
tauri-macros = { version = "1.0.4", path = "../tauri-macros" }
tauri-utils = { version = "1.0.3", features = [ "resources" ], path = "../tauri-utils" }
tauri-runtime-wry = { version = "0.10.2", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"

View File

@ -1,5 +1,16 @@
# Changelog
## \[1.0.4]
- Reduce the amount of allocations when converting cases.
- [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
- Automatically load WiX extensions referenced in fragments.
- [261d1bc9](https://www.github.com/tauri-apps/tauri/commit/261d1bc9d4a0ecf4dda16a47a1652efeabffc378) feat(bundler): load WiX extensions used on fragments, closes [#4546](https://www.github.com/tauri-apps/tauri/pull/4546) ([#4656](https://www.github.com/tauri-apps/tauri/pull/4656)) on 2022-07-12
- Fix AppImage builds by pinning the linuxdeploy version.
- [89cb2526](https://www.github.com/tauri-apps/tauri/commit/89cb2526409d3b88e0aa15b93e4d26b09d9c0373) fix(bundler): pin linuxdeploy version on 2022-07-14
- Use `Bin_${sidecarFilename}` as the `Id` of sidecar file on WiX so you can reference it in your WiX fragments.
- [597c9820](https://www.github.com/tauri-apps/tauri/commit/597c98203cad9b45949816659f5f59976328585a) feat(bundler): use known Id for the sidecar files on WiX, ref [#4546](https://www.github.com/tauri-apps/tauri/pull/4546) ([#4658](https://www.github.com/tauri-apps/tauri/pull/4658)) on 2022-07-12
## \[1.0.3]
- Build AppImages inside the `src-tauri/target` folder rather than `~/.cache/tauri`. Making it easier to clean and rebuild from scratch.

View File

@ -2,7 +2,7 @@ workspace = { }
[package]
name = "tauri-bundler"
version = "1.0.3"
version = "1.0.4"
authors = [
"George Burton <burtonageo@gmail.com>",
"Tauri Programme within The Commons Conservancy"

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.4]
- Do not capture and force colors of `cargo build` output.
- [c635a0da](https://www.github.com/tauri-apps/tauri/commit/c635a0dad437860d54109adffaf245b7c21bc684) refactor(cli): do not capture and force colors of cargo build output ([#4627](https://www.github.com/tauri-apps/tauri/pull/4627)) on 2022-07-12
- Reduce the amount of allocations when converting cases.
- [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
## \[1.0.3]
- Changed the app template to not set the default app menu as it is now set automatically on macOS which is the platform that needs a menu to function properly.

View File

@ -2766,7 +2766,7 @@ dependencies = [
[[package]]
name = "tauri-bundler"
version = "1.0.3"
version = "1.0.4"
dependencies = [
"anyhow",
"ar",
@ -2803,7 +2803,7 @@ dependencies = [
[[package]]
name = "tauri-cli"
version = "1.0.3"
version = "1.0.4"
dependencies = [
"anyhow",
"base64",

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "1.0.3"
version = "1.0.4"
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.2", features = [ "derive" ] }
anyhow = "1.0"
tauri-bundler = { version = "1.0.3", path = "../bundler" }
tauri-bundler = { version = "1.0.4", path = "../bundler" }
colored = "2.0"
once_cell = "1.13"
serde = { version = "1.0", features = [ "derive" ] }

View File

@ -1,8 +1,8 @@
{
"cli.js": {
"version": "1.0.3",
"version": "1.0.4",
"node": ">= 10.0.0"
},
"tauri": "1.0.3",
"tauri-build": "1.0.3"
"tauri": "1.0.4",
"tauri-build": "1.0.4"
}

View File

@ -1,5 +1,12 @@
# Changelog
## \[1.0.4]
- Do not capture and force colors of `cargo build` output.
- [c635a0da](https://www.github.com/tauri-apps/tauri/commit/c635a0dad437860d54109adffaf245b7c21bc684) refactor(cli): do not capture and force colors of cargo build output ([#4627](https://www.github.com/tauri-apps/tauri/pull/4627)) on 2022-07-12
- Reduce the amount of allocations when converting cases.
- [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
## \[1.0.3]
- Changed the app template to not set the default app menu as it is now set automatically on macOS which is the platform that needs a menu to function properly.

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/cli",
"version": "1.0.3",
"version": "1.0.4",
"description": "Command line interface for building Tauri apps",
"funding": {
"type": "opencollective",