Browse Source

(NEXT) Apply Version Updates From Current Changes (#6586)

* apply version updates

* fix changelog

* typo

---------

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.app>
github-actions[bot] 2 years ago
parent
commit
249db9e49b

+ 1 - 1
.changes/pnpm-android.md

@@ -3,4 +3,4 @@
 "cli.js": patch
 "cli.js": patch
 ---
 ---
 
 
-Fix `tauri anroid build/dev` crashing when used with standalone `pnpm` executable on Windows.
+Fix `tauri android build/dev` crashing when used with standalone `pnpm` executable on Windows.

+ 2 - 0
.changes/pre.json

@@ -24,6 +24,7 @@
     ".changes/fix-dev-server-proxy-path.md",
     ".changes/fix-dev-server-proxy-path.md",
     ".changes/fix-empty-identifier.md",
     ".changes/fix-empty-identifier.md",
     ".changes/fix-ios-run-xcode14.md",
     ".changes/fix-ios-run-xcode14.md",
+    ".changes/fix-ios-template.md",
     ".changes/fix-mobile-env-vars.md",
     ".changes/fix-mobile-env-vars.md",
     ".changes/fix-orientation-crash.md",
     ".changes/fix-orientation-crash.md",
     ".changes/fix-tauri-binary-windows.md",
     ".changes/fix-tauri-binary-windows.md",
@@ -56,6 +57,7 @@
     ".changes/plugin-init-fns.md",
     ".changes/plugin-init-fns.md",
     ".changes/plugin-init-refactor.md",
     ".changes/plugin-init-refactor.md",
     ".changes/plugin-setup-refactor.md",
     ".changes/plugin-setup-refactor.md",
+    ".changes/pnpm-android.md",
     ".changes/refactor-macros.md",
     ".changes/refactor-macros.md",
     ".changes/refactor-setup.md",
     ".changes/refactor-setup.md",
     ".changes/remove-attohttpc.md",
     ".changes/remove-attohttpc.md",

+ 7 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 # Changelog
 
 
+## \[2.0.0-alpha.5]
+
+- Fixes the iOS project script to build the Rust library.
+  - [6e3e4c22](https://www.github.com/tauri-apps/tauri/commit/6e3e4c22be51500bec7856d90dcb2e40ef7fe1b4) fix(cli): use correct variable on script to build Rust iOS code ([#6581](https://www.github.com/tauri-apps/tauri/pull/6581)) on 2023-03-29
+- Fix `tauri android build/dev` crashing when used with standalone `pnpm` executable on Windows.
+  - [39df2c98](https://www.github.com/tauri-apps/tauri/commit/39df2c982e5e2ee8617b40f829a2f2e4abfce412) fix(cli/android): fallback to `${program}.cmd` ([#6576](https://www.github.com/tauri-apps/tauri/pull/6576)) on 2023-03-29
+
 ## \[2.0.0-alpha.4]
 ## \[2.0.0-alpha.4]
 
 
 - Fix android project build crashing when using `pnpm` caused by extra `--`.
 - Fix android project build crashing when using `pnpm` caused by extra `--`.

+ 1 - 1
tooling/cli/Cargo.lock

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

+ 2 - 2
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 
 [package]
 [package]
 name = "tauri-cli"
 name = "tauri-cli"
-version = "2.0.0-alpha.4"
+version = "2.0.0-alpha.5"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 edition = "2021"
 rust-version = "1.64"
 rust-version = "1.64"
@@ -46,7 +46,7 @@ tauri-mobile = { version = "0.2.5", default-features = false }
 textwrap = { version = "0.11.0", features = [ "term_size" ] }
 textwrap = { version = "0.11.0", features = [ "term_size" ] }
 jsonrpsee = { version = "0.16", features = [ "server" ] }
 jsonrpsee = { version = "0.16", features = [ "server" ] }
 jsonrpsee-core = "0.16"
 jsonrpsee-core = "0.16"
-jsonrpsee-client-transport = { version = "0.16", features = ["ws"] }
+jsonrpsee-client-transport = { version = "0.16", features = [ "ws" ] }
 jsonrpsee-ws-client = { version = "0.16", default-features = false }
 jsonrpsee-ws-client = { version = "0.16", default-features = false }
 thiserror = "1"
 thiserror = "1"
 sublime_fuzzy = "0.7"
 sublime_fuzzy = "0.7"

+ 1 - 1
tooling/cli/metadata.json

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

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

@@ -1,5 +1,13 @@
 # Changelog
 # Changelog
 
 
+## \[2.0.0-alpha.5]
+
+- Fixes the iOS project script to build the Rust library.
+  - [6e3e4c22](https://www.github.com/tauri-apps/tauri/commit/6e3e4c22be51500bec7856d90dcb2e40ef7fe1b4) fix(cli): use correct variable on script to build Rust iOS code ([#6581](https://www.github.com/tauri-apps/tauri/pull/6581)) on 2023-03-29
+- Fix `tauri android build/dev` crashing when used with standalone `pnpm` executable on Windows.
+  - [39df2c98](https://www.github.com/tauri-apps/tauri/commit/39df2c982e5e2ee8617b40f829a2f2e4abfce412) fix(cli/android): fallback to `${program}.cmd` ([#6576](https://www.github.com/tauri-apps/tauri/pull/6576)) on 2023-03-29
+  - [6b469c40](https://www.github.com/tauri-apps/tauri/commit/6b469c40c6244ba773d7478adbb41db6fdc72822) chore(changes): adjust change file for Android script execution fix on 2023-03-29
+
 ## \[2.0.0-alpha.4]
 ## \[2.0.0-alpha.4]
 
 
 - Fix android project build crashing when using `pnpm` caused by extra `--`.
 - Fix android project build crashing when using `pnpm` caused by extra `--`.

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

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