Ver Fonte

apply version updates (#6858)

Co-authored-by: wusyong <wusyong@users.noreply.github.com>
github-actions[bot] há 2 anos atrás
pai
commit
73a0ad41c7

+ 0 - 5
.changes/fix-wix-escape-resources.md

@@ -1,5 +0,0 @@
----
-'tauri-bundler': 'patch'
----
-
-Correctly escape XML for resource files in WiX bundler.

+ 0 - 8
.changes/nsis-spanish.md

@@ -1,8 +0,0 @@
----
-'tauri-bundler': 'patch'
----
-
-Added the following languages to the NSIS bundler:
-
-- `Spanish`
-- `SpanishInternational`

+ 0 - 5
.changes/nsis-webview-installmodes.md

@@ -1,5 +0,0 @@
----
-'tauri-bundler': 'patch'
----
-
-Correctly escape arguments in NSIS script to fix bundling apps that use non-default WebView2 install modes.

+ 16 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,21 @@
 # Changelog
 
+## \[1.2.1]
+
+- Correctly escape XML for resource files in WiX bundler.
+  - [6a6b1388](https://www.github.com/tauri-apps/tauri/commit/6a6b1388ea5787aea4c0e0b0701a4772087bbc0f) fix(bundler): correctly escape resource xml, fixes [#6853](https://www.github.com/tauri-apps/tauri/pull/6853) ([#6855](https://www.github.com/tauri-apps/tauri/pull/6855)) on 2023-05-04
+
+- Added the following languages to the NSIS bundler:
+
+- `Spanish`
+
+- `SpanishInternational`
+
+- [422b4817](https://www.github.com/tauri-apps/tauri/commit/422b48179856504e980a156500afa8e22c44d357) Add Spanish and SpanishInternational languages ([#6871](https://www.github.com/tauri-apps/tauri/pull/6871)) on 2023-05-06
+
+- Correctly escape arguments in NSIS script to fix bundling apps that use non-default WebView2 install modes.
+  - [2915bd06](https://www.github.com/tauri-apps/tauri/commit/2915bd068ed40dc01a363b69212c6b6f2d3ec01e) fix(bundler): Fix webview install modes in NSIS bundler ([#6854](https://www.github.com/tauri-apps/tauri/pull/6854)) on 2023-05-04
+
 ## \[1.2.0]
 
 - Add dylib support to `tauri.bundle.macOS.frameworks`.

+ 4 - 4
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "1.2.0"
+version = "1.2.1"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy"
@@ -64,6 +64,6 @@ name = "tauri_bundler"
 path = "src/lib.rs"
 
 [features]
-default = ["attohttpc/default"]
-native-tls-vendored = ["attohttpc/tls-native-vendored"]
-rustls = ["attohttpc/rustls"]
+default = [ "attohttpc/default" ]
+native-tls-vendored = [ "attohttpc/tls-native-vendored" ]
+rustls = [ "attohttpc/rustls" ]

+ 20 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,25 @@
 # Changelog
 
+## \[1.3.1]
+
+- Correctly escape XML for resource files in WiX bundler.
+  - Bumped due to a bump in tauri-bundler.
+  - [6a6b1388](https://www.github.com/tauri-apps/tauri/commit/6a6b1388ea5787aea4c0e0b0701a4772087bbc0f) fix(bundler): correctly escape resource xml, fixes [#6853](https://www.github.com/tauri-apps/tauri/pull/6853) ([#6855](https://www.github.com/tauri-apps/tauri/pull/6855)) on 2023-05-04
+
+- Added the following languages to the NSIS bundler:
+
+- `Spanish`
+
+- `SpanishInternational`
+
+- Bumped due to a bump in tauri-bundler.
+
+- [422b4817](https://www.github.com/tauri-apps/tauri/commit/422b48179856504e980a156500afa8e22c44d357) Add Spanish and SpanishInternational languages ([#6871](https://www.github.com/tauri-apps/tauri/pull/6871)) on 2023-05-06
+
+- Correctly escape arguments in NSIS script to fix bundling apps that use non-default WebView2 install modes.
+  - Bumped due to a bump in tauri-bundler.
+  - [2915bd06](https://www.github.com/tauri-apps/tauri/commit/2915bd068ed40dc01a363b69212c6b6f2d3ec01e) fix(bundler): Fix webview install modes in NSIS bundler ([#6854](https://www.github.com/tauri-apps/tauri/pull/6854)) on 2023-05-04
+
 ## \[1.3.0]
 
 - Look for available port when using the built-in dev server for static files.

+ 2 - 2
tooling/cli/Cargo.lock

@@ -3343,7 +3343,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "1.2.0"
+version = "1.2.1"
 dependencies = [
  "anyhow",
  "ar",
@@ -3382,7 +3382,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.3.0"
+version = "1.3.1"
 dependencies = [
  "anyhow",
  "axum",

+ 5 - 5
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "1.3.0"
+version = "1.3.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.60"
@@ -41,7 +41,7 @@ path = "src/main.rs"
 [dependencies]
 clap = { version = "4.0", features = [ "derive" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "1.2.0", path = "../bundler", default-features = false }
+tauri-bundler = { version = "1.2.1", path = "../bundler", default-features = false }
 colored = "2.0"
 once_cell = "1"
 serde = { version = "1.0", features = [ "derive" ] }
@@ -92,6 +92,6 @@ libc = "0.2"
 lto = true
 
 [features]
-default = ["tauri-bundler/default"]
-native-tls-vendored = ["tauri-bundler/native-tls-vendored"]
-rustls = ["tauri-bundler/rustls"]
+default = [ "tauri-bundler/default" ]
+native-tls-vendored = [ "tauri-bundler/native-tls-vendored" ]
+rustls = [ "tauri-bundler/rustls" ]

+ 1 - 1
tooling/cli/metadata.json

@@ -1,6 +1,6 @@
 {
   "cli.js": {
-    "version": "1.3.0",
+    "version": "1.3.1",
     "node": ">= 10.0.0"
   },
   "tauri": "1.3.0",

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

@@ -1,5 +1,28 @@
 # Changelog
 
+## \[1.3.1]
+
+- Correctly escape XML for resource files in WiX bundler.
+  - Bumped due to a bump in tauri-bundler.
+    - Bumped due to a bump in cli.rs.
+  - [6a6b1388](https://www.github.com/tauri-apps/tauri/commit/6a6b1388ea5787aea4c0e0b0701a4772087bbc0f) fix(bundler): correctly escape resource xml, fixes [#6853](https://www.github.com/tauri-apps/tauri/pull/6853) ([#6855](https://www.github.com/tauri-apps/tauri/pull/6855)) on 2023-05-04
+
+- Added the following languages to the NSIS bundler:
+
+- `Spanish`
+
+- `SpanishInternational`
+
+- Bumped due to a bump in tauri-bundler.
+  - Bumped due to a bump in cli.rs.
+
+- [422b4817](https://www.github.com/tauri-apps/tauri/commit/422b48179856504e980a156500afa8e22c44d357) Add Spanish and SpanishInternational languages ([#6871](https://www.github.com/tauri-apps/tauri/pull/6871)) on 2023-05-06
+
+- Correctly escape arguments in NSIS script to fix bundling apps that use non-default WebView2 install modes.
+  - Bumped due to a bump in tauri-bundler.
+    - Bumped due to a bump in cli.rs.
+  - [2915bd06](https://www.github.com/tauri-apps/tauri/commit/2915bd068ed40dc01a363b69212c6b6f2d3ec01e) fix(bundler): Fix webview install modes in NSIS bundler ([#6854](https://www.github.com/tauri-apps/tauri/pull/6854)) on 2023-05-04
+
 ## \[1.3.0]
 
 - Add `--ci` flag and respect the `CI` environment variable on the `signer generate` command. In this case the default password will be an empty string and the CLI will not prompt for a value.

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

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