Browse Source

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

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

+ 3 - 0
.changes/pre.json

@@ -3,6 +3,7 @@
   "changes": [
     ".changes/add-mobile-to-plugin.md",
     ".changes/android-apis-runtime.md",
+    ".changes/android-buildsrc-gitignore.md",
     ".changes/build-android-env-vars.md",
     ".changes/bump-1.3.md",
     ".changes/cli-android-build.md",
@@ -32,10 +33,12 @@
     ".changes/fix-ios-template.md",
     ".changes/fix-mobile-env-vars.md",
     ".changes/fix-orientation-crash.md",
+    ".changes/fix-plugin-ios-bool.md",
     ".changes/fix-plugin-template-cargotoml.md",
     ".changes/fix-proguard-rules.md",
     ".changes/fix-shell-build.md",
     ".changes/fix-tauri-binary-windows.md",
+    ".changes/fix-xcodescript-lib-path.md",
     ".changes/force-colored-logs.md",
     ".changes/gtk16.md",
     ".changes/improve-local-ip-detection.md",

+ 5 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+- Fixes boolean plugin parameters freezing the application.
+  - [9de89791](https://www.github.com/tauri-apps/tauri/commit/9de897919aa7236913ba6ca7c34a68099f4ff600) fix(core): iOS plugin freezing when receiving a bool parameter ([#6700](https://www.github.com/tauri-apps/tauri/pull/6700)) on 2023-04-13
+
 ## \[2.0.0-alpha.7]
 
 - Change minimum Android SDK version to 21 for the plugin library.

+ 1 - 1
core/tauri/Cargo.toml

@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
 name = "tauri"
 readme = "README.md"
 repository = "https://github.com/tauri-apps/tauri"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 links = "Tauri"
 
 [package.metadata.docs.rs]

+ 7 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+- Do not gitignore the Android project's `buildSrc` folder by default since we removed absolute paths from it.
+  - [ee2d3b97](https://www.github.com/tauri-apps/tauri/commit/ee2d3b971df6d3630b8d935394fb4febcfa3a909) fix(cli): remove buildSrc from Android project gitignored paths ([#6702](https://www.github.com/tauri-apps/tauri/pull/6702)) on 2023-04-13
+- Fixes iOS build script using the wrong path for the app library file.
+  - [abc5f91f](https://www.github.com/tauri-apps/tauri/commit/abc5f91fa3569efc9dfdee46d1c501eda8755944) fix(cli): iOS Xcode script using incorrect library path ([#6699](https://www.github.com/tauri-apps/tauri/pull/6699)) on 2023-04-13
+
 ## \[2.0.0-alpha.7]
 
 - Add `--release` flag for `tauri android dev` however you will need to sign your Android app, see https://next--tauri.netlify.app/next/guides/distribution/sign-android

+ 1 - 1
tooling/cli/Cargo.lock

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

+ 1 - 1
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.64"

+ 2 - 2
tooling/cli/metadata.json

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

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

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+- Do not gitignore the Android project's `buildSrc` folder by default since we removed absolute paths from it.
+  - [ee2d3b97](https://www.github.com/tauri-apps/tauri/commit/ee2d3b971df6d3630b8d935394fb4febcfa3a909) fix(cli): remove buildSrc from Android project gitignored paths ([#6702](https://www.github.com/tauri-apps/tauri/pull/6702)) on 2023-04-13
+- Fixes iOS build script using the wrong path for the app library file.
+  - [abc5f91f](https://www.github.com/tauri-apps/tauri/commit/abc5f91fa3569efc9dfdee46d1c501eda8755944) fix(cli): iOS Xcode script using incorrect library path ([#6699](https://www.github.com/tauri-apps/tauri/pull/6699)) on 2023-04-13
+
 ## \[2.0.0-alpha.7]
 
 - Add `--release` flag for `tauri android dev` however you will need to sign your Android app, see https://next--tauri.netlify.app/next/guides/distribution/sign-android

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

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