Browse Source

Apply Version Updates From Current Changes (#4650)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 3 years ago
parent
commit
b1d53426d1

+ 0 - 6
.changes/cli-build-output.md

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

+ 0 - 5
.changes/fix-command-handler-clippy-warn.md

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

+ 0 - 9
.changes/heck-allocations.md

@@ -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.

+ 0 - 5
.changes/load-wix-extension.md

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

+ 0 - 5
.changes/pin-linuxdeploy.md

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

+ 0 - 5
.changes/sidecar-wix-ids.md

@@ -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.

+ 0 - 5
.changes/unraw-command-key.md

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

+ 0 - 5
.changes/validate-isolation-hook-set.md

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

+ 5 - 0
core/tauri-build/CHANGELOG.md

@@ -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.

+ 2 - 2
core/tauri-build/Cargo.toml

@@ -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"

+ 5 - 0
core/tauri-codegen/CHANGELOG.md

@@ -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.

+ 1 - 1
core/tauri-codegen/Cargo.toml

@@ -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"

+ 7 - 0
core/tauri-macros/CHANGELOG.md

@@ -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.

+ 2 - 2
core/tauri-macros/Cargo.toml

@@ -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]

+ 5 - 0
core/tauri/CHANGELOG.md

@@ -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)`.

+ 2 - 2
core/tauri/Cargo.toml

@@ -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"

+ 11 - 0
tooling/bundler/CHANGELOG.md

@@ -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.

+ 1 - 1
tooling/bundler/Cargo.toml

@@ -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"

+ 7 - 0
tooling/cli/CHANGELOG.md

@@ -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.

+ 2 - 2
tooling/cli/Cargo.lock

@@ -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",

+ 2 - 2
tooling/cli/Cargo.toml

@@ -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" ] }

+ 3 - 3
tooling/cli/metadata.json

@@ -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"
 }

+ 7 - 0
tooling/cli/node/CHANGELOG.md

@@ -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.

+ 1 - 1
tooling/cli/node/package.json

@@ -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",