Parcourir la source

Apply Version Updates From Current Changes (#4701)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] il y a 3 ans
Parent
commit
679abc6a9a

+ 0 - 5
.changes/fix-debian-arm64.md

@@ -1,5 +0,0 @@
----
-"tauri-bundler": patch
----
-
-Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).

+ 0 - 5
.changes/fix-windows-updater.md

@@ -1,5 +0,0 @@
----
-"tauri": patch
----
-
-Escape the MSI file path when running msiexec via powershell.

+ 5 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.5]
+
+- Escape the MSI file path when running msiexec via powershell.
+  - [9af43134](https://www.github.com/tauri-apps/tauri/commit/9af43134e1e58369907281024d31bdb4d16ee6f6) fix(updater): escape MSI path ([#4737](https://www.github.com/tauri-apps/tauri/pull/4737)) on 2022-07-22
+
 ## \[1.0.4]
 
 - Reduce the amount of allocations when converting cases.

+ 1 - 1
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.4"
+version = "1.0.5"
 
 [package.metadata.docs.rs]
 no-default-features = true

+ 5 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.5]
+
+- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
+  - [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17
+
 ## \[1.0.4]
 
 - Reduce the amount of allocations when converting cases.

+ 1 - 1
tooling/bundler/Cargo.toml

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

+ 6 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.5]
+
+- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
+  - Bumped due to a bump in tauri-bundler.
+  - [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17
+
 ## \[1.0.4]
 
 - Do not capture and force colors of `cargo build` output.

+ 2 - 2
tooling/cli/Cargo.lock

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

+ 2 - 2
tooling/cli/Cargo.toml

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

+ 2 - 2
tooling/cli/metadata.json

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

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

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.5]
+
+- Correctly fill the architecture when building Debian packages targeting ARM64 (aarch64).
+  - Bumped due to a bump in cli.rs.
+  - [635f23b8](https://www.github.com/tauri-apps/tauri/commit/635f23b88adbb8726d628f67840709cd870836dc) fix(bundler): correctly set debian architecture for aarch64 ([#4700](https://www.github.com/tauri-apps/tauri/pull/4700)) on 2022-07-17
+
 ## \[1.0.4]
 
 - Do not capture and force colors of `cargo build` output.

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

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