فهرست منبع

apply version updates (#6518)

github-actions[bot] 2 سال پیش
والد
کامیت
a031e4a8a0

+ 3 - 0
.changes/pre.json

@@ -11,6 +11,7 @@
     ".changes/cli-mobile-dev.md",
     ".changes/cli-mobile-plugin.md",
     ".changes/cli-nodejs-detection.md",
+    ".changes/cli-pnpm.md",
     ".changes/cli-refactor-ipc-mobile.md",
     ".changes/codegen-mobile-devurl.md",
     ".changes/default-tls-features.md",
@@ -25,6 +26,7 @@
     ".changes/fix-ios-run-xcode14.md",
     ".changes/fix-mobile-env-vars.md",
     ".changes/fix-orientation-crash.md",
+    ".changes/fix-tauri-binary-windows.md",
     ".changes/force-colored-logs.md",
     ".changes/gtk16.md",
     ".changes/improve-local-ip-detection.md",
@@ -47,6 +49,7 @@
     ".changes/mobile-webview-access.md",
     ".changes/mobile.md",
     ".changes/msrv-1.64.md",
+    ".changes/napi-rs.md",
     ".changes/npm-pass-args.md",
     ".changes/only-proxy-on-mobile.md",
     ".changes/package-info-crate-name.md",

+ 7 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-alpha.4]
+
+- Fix android project build crashing when using `pnpm` caused by extra `--`.
+  - [c787f749](https://www.github.com/tauri-apps/tauri/commit/c787f749de01b79d891615aad8c37b23037fff4c) fix(cli): only add `--` to generated android template for npm ([#6508](https://www.github.com/tauri-apps/tauri/pull/6508)) on 2023-03-21
+- Fixes the Android build gradle plugin implementation on Windows.
+  - [00241fa9](https://www.github.com/tauri-apps/tauri/commit/00241fa92d104870068a701519340633cc35b716) fix(cli): append .cmd on the gradle plugin binary on Windows, fix [#6502](https://www.github.com/tauri-apps/tauri/pull/6502) ([#6503](https://www.github.com/tauri-apps/tauri/pull/6503)) on 2023-03-21
+
 ## \[2.0.0-alpha.3]
 
 - Added `plugin android add` and `plugin ios add` commands to add mobile plugin functionality to existing projects.

+ 1 - 1
tooling/cli/Cargo.lock

@@ -3726,7 +3726,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-alpha.3"
+version = "2.0.0-alpha.4"
 dependencies = [
  "anyhow",
  "axum",

+ 2 - 2
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-alpha.3"
+version = "2.0.0-alpha.4"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.64"
@@ -39,7 +39,7 @@ name = "cargo-tauri"
 path = "src/main.rs"
 
 [features]
-openssl-vendored = ["tauri-mobile/openssl-vendored"]
+openssl-vendored = [ "tauri-mobile/openssl-vendored" ]
 
 [dependencies]
 tauri-mobile = { version = "0.2.5", default-features = false }

+ 1 - 1
tooling/cli/metadata.json

@@ -1,6 +1,6 @@
 {
   "cli.js": {
-    "version": "2.0.0-alpha.3",
+    "version": "2.0.0-alpha.4",
     "node": ">= 10.0.0"
   },
   "tauri": "2.0.0-alpha.4",

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

@@ -1,5 +1,14 @@
 # Changelog
 
+## \[2.0.0-alpha.4]
+
+- Fix android project build crashing when using `pnpm` caused by extra `--`.
+  - [c787f749](https://www.github.com/tauri-apps/tauri/commit/c787f749de01b79d891615aad8c37b23037fff4c) fix(cli): only add `--` to generated android template for npm ([#6508](https://www.github.com/tauri-apps/tauri/pull/6508)) on 2023-03-21
+- Fixes the Android build gradle plugin implementation on Windows.
+  - [00241fa9](https://www.github.com/tauri-apps/tauri/commit/00241fa92d104870068a701519340633cc35b716) fix(cli): append .cmd on the gradle plugin binary on Windows, fix [#6502](https://www.github.com/tauri-apps/tauri/pull/6502) ([#6503](https://www.github.com/tauri-apps/tauri/pull/6503)) on 2023-03-21
+- Update `napi-rs` dependencies to latest to fix CLI hanging up forever.
+  - [d5ac76b5](https://www.github.com/tauri-apps/tauri/commit/d5ac76b53c7f35253db84ddfbf4ecf975ff6307d) chore(deps): update napi-rs, closes [#6502](https://www.github.com/tauri-apps/tauri/pull/6502) ([#6513](https://www.github.com/tauri-apps/tauri/pull/6513)) on 2023-03-21
+
 ## \[2.0.0-alpha.3]
 
 - Added `plugin android add` and `plugin ios add` commands to add mobile plugin functionality to existing projects.

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

@@ -1,6 +1,6 @@
 {
   "name": "@tauri-apps/cli",
-  "version": "2.0.0-alpha.3",
+  "version": "2.0.0-alpha.4",
   "description": "Command line interface for building Tauri apps",
   "funding": {
     "type": "opencollective",