ソースを参照

apply version updates (#10828)

github-actions[bot] 11 ヶ月 前
コミット
82b084e65c

+ 2 - 0
.changes/pre.json

@@ -46,6 +46,7 @@
     ".changes/fix-export-default-permissions.md",
     ".changes/fix-ios-build-older-swift.md",
     ".changes/fix-ios-bun-support.md",
+    ".changes/fix-ios-signing-api-key.md",
     ".changes/fix-ipc-fallback.md",
     ".changes/fix-manifest-migration.md",
     ".changes/fix-missing-codesign-error-macos.md",
@@ -64,6 +65,7 @@
     ".changes/ios-frameworks.md",
     ".changes/isolation-main-frame-origin.md",
     ".changes/linux-option-gtk-app-id.md",
+    ".changes/maintainer-fallback.md",
     ".changes/migrate-plugins.md",
     ".changes/migrate-prevent-duplications.md",
     ".changes/migrate-v1-plugin-npm.md",

+ 2 - 2
Cargo.lock

@@ -7099,7 +7099,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.1-rc.6"
+version = "2.0.1-rc.7"
 dependencies = [
  "anyhow",
  "ar",
@@ -7142,7 +7142,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-rc.8"
+version = "2.0.0-rc.9"
 dependencies = [
  "anyhow",
  "axum",

+ 6 - 0
crates/tauri-bundler/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.1-rc.7]
+
+### Enhancements
+
+- [`5ec74456b`](https://www.github.com/tauri-apps/tauri/commit/5ec74456b9ae45eaa63e225856de1b7eb83abe6f) ([#10825](https://www.github.com/tauri-apps/tauri/pull/10825) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) The debian `Maintainer` field now defaults to the Cargo.toml authors, but fallbacks to the `publisher` config value and the second part of the bundle identifier.
+
 ## \[2.0.1-rc.6]
 
 ### New Features

+ 1 - 1
crates/tauri-bundler/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-bundler"
-version = "2.0.1-rc.6"
+version = "2.0.1-rc.7"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy",

+ 10 - 0
crates/tauri-cli/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-rc.9]
+
+### Bug Fixes
+
+- [`5af1f5dec`](https://www.github.com/tauri-apps/tauri/commit/5af1f5dec1bb98f335169df8c5e30c19a24cae07) ([#10851](https://www.github.com/tauri-apps/tauri/pull/10851) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build` failing to build iOS app in CI when using an API key for automatic signing.
+
+### Dependencies
+
+- Upgraded to `tauri-bundler@2.0.1-rc.7`
+
 ## \[2.0.0-rc.8]
 
 ### New Features

+ 2 - 2
crates/tauri-cli/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-cli"
-version = "2.0.0-rc.8"
+version = "2.0.0-rc.9"
 authors = ["Tauri Programme within The Commons Conservancy"]
 edition = "2021"
 rust-version = "1.71"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
 clap_complete = "4"
 clap = { version = "4.5", features = ["derive", "env"] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.1-rc.6", default-features = false, path = "../tauri-bundler" }
+tauri-bundler = { version = "2.0.1-rc.7", default-features = false, path = "../tauri-bundler" }
 colored = "2.1"
 serde = { version = "1.0", features = ["derive"] }
 serde_json = { version = "1.0", features = ["preserve_order"] }

+ 1 - 1
crates/tauri-cli/metadata-v2.json

@@ -1,6 +1,6 @@
 {
   "cli.js": {
-    "version": "2.0.0-rc.8",
+    "version": "2.0.0-rc.9",
     "node": ">= 10.0.0"
   },
   "tauri": "2.0.0-rc.8",

+ 10 - 0
packages/cli/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-rc.9]
+
+### Bug Fixes
+
+- [`5af1f5dec`](https://www.github.com/tauri-apps/tauri/commit/5af1f5dec1bb98f335169df8c5e30c19a24cae07) ([#10851](https://www.github.com/tauri-apps/tauri/pull/10851) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `ios build` failing to build iOS app in CI when using an API key for automatic signing.
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-rc.9`
+
 ## \[2.0.0-rc.8]
 
 ### New Features

+ 1 - 1
packages/cli/package.json

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