Browse Source

Apply Version Updates From Current Changes (#7823)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
github-actions[bot] 1 year ago
parent
commit
713f84db2b

+ 14 - 0
.changes/pre.json

@@ -24,6 +24,7 @@
     ".changes/cli-android-split-per-abit-target.md",
     ".changes/cli-apple-dev-team.md",
     ".changes/cli-built-in-dev-server-mobile.md",
+    ".changes/cli-config-target-mobile.md",
     ".changes/cli-expose-plugin-config.md",
     ".changes/cli-ios-build.md",
     ".changes/cli-ios-metadata-env-var.md",
@@ -41,6 +42,7 @@
     ".changes/cli-skip-targets-install.md",
     ".changes/cli-wry-0-28.md",
     ".changes/codegen-mobile-devurl.md",
+    ".changes/codegen-target-from-utils.md",
     ".changes/config-incognito.md",
     ".changes/config-tray-icon-tooltip.md",
     ".changes/config-tray-icon.md",
@@ -58,6 +60,7 @@
     ".changes/default-window-icon.md",
     ".changes/dev-proxy-response-cache.md",
     ".changes/dev-proxy.md",
+    ".changes/devicectl.md",
     ".changes/dnd-position.md",
     ".changes/downgrade-min-sdk-version.md",
     ".changes/dynamic-wry-plugin.md",
@@ -72,6 +75,7 @@
     ".changes/fix-channel-data-request.md",
     ".changes/fix-dev-server-proxy-path.md",
     ".changes/fix-empty-identifier.md",
+    ".changes/fix-icons-android.md",
     ".changes/fix-ios-cli-panic.md",
     ".changes/fix-ios-logs.md",
     ".changes/fix-ios-plugin-throws-command.md",
@@ -127,6 +131,7 @@
     ".changes/migrate-csp.md",
     ".changes/migrate-plugins.md",
     ".changes/min-sdk-version.md",
+    ".changes/mobile-config-naming-conventions.md",
     ".changes/mobile-config.md",
     ".changes/mobile-dev-watcher-ignore-gen.md",
     ".changes/mobile-entry-point-macro.md",
@@ -204,6 +209,7 @@
     ".changes/runtime-new-args.md",
     ".changes/runtime-opened-event.md",
     ".changes/safepathbuf-refactor.md",
+    ".changes/set_native_icon_signature.md",
     ".changes/shadow-api.md",
     ".changes/shadow-config.md",
     ".changes/shadow.md",
@@ -214,17 +220,24 @@
     ".changes/submenu-and-menu-builders-item-and-id.md",
     ".changes/system-tray-feat.md",
     ".changes/target-dir-detection.md",
+    ".changes/tauri-api-removal.md",
     ".changes/tauri-app-handle-ref.md",
+    ".changes/tauri-asset-protocol.md",
     ".changes/tauri-build-mobile.md",
     ".changes/tauri-cleanup-before-exit.md",
     ".changes/tauri-defaultvbox.md",
+    ".changes/tauri-env-args.md",
     ".changes/tauri-libxdo-feat.md",
     ".changes/tauri-menu-tray-refactor.md",
     ".changes/tauri-mobile-entry-point.md",
     ".changes/tauri-nsview.md",
     ".changes/tauri-run_on_main_thread.md",
     ".changes/tauri-runtime-wry-wry-0-28.md",
+    ".changes/tauri-scopes.md",
     ".changes/tauri-tray-icon-feat-flag.md",
+    ".changes/tauri-tray-icon-id.md",
+    ".changes/tauri-tray-on-tray-event.md",
+    ".changes/tauri-utils-tray-icon-id copy.md",
     ".changes/tempdir-api.md",
     ".changes/tempdir-core.md",
     ".changes/tls-features-automatically-enabled.md",
@@ -232,6 +245,7 @@
     ".changes/ubuntu-20.04-cli.js.md",
     ".changes/ubuntu-20.04-cli.rs.md",
     ".changes/update-entitlements-api.md",
+    ".changes/validate-appimage.md",
     ".changes/window-effects-api.md",
     ".changes/window-effects-config.md",
     ".changes/window-effects.md",

+ 7 - 0
core/tauri-build/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[2.0.0-alpha.9]
+
+### Dependencies
+
+- Upgraded to `tauri-codegen@2.0.0-alpha.8`
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+
 ## \[2.0.0-alpha.8]
 
 ### Bug Fixes

+ 3 - 3
core/tauri-build/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-build"
-version = "2.0.0-alpha.8"
+version = "2.0.0-alpha.9"
 description = "build time code to pair with https://crates.io/crates/tauri"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -19,8 +19,8 @@ rustdoc-args = [ "--cfg", "doc_cfg" ]
 [dependencies]
 anyhow = "1"
 quote = { version = "1", optional = true }
-tauri-codegen = { version = "2.0.0-alpha.7", path = "../tauri-codegen", optional = true }
-tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils", features = [ "build", "resources" ] }
+tauri-codegen = { version = "2.0.0-alpha.8", path = "../tauri-codegen", optional = true }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils", features = [ "build", "resources" ] }
 cargo_toml = "0.15"
 serde = "1"
 serde_json = "1"

+ 10 - 0
core/tauri-codegen/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+### Enhancements
+
+- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Use `Target` enum from `tauri_utils::platform`.
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+
 ## \[2.0.0-alpha.7]
 
 ### Dependencies

+ 2 - 2
core/tauri-codegen/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-codegen"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -19,7 +19,7 @@ proc-macro2 = "1"
 quote = "1"
 serde = { version = "1", features = [ "derive" ] }
 serde_json = "1"
-tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils", features = [ "build" ] }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils", features = [ "build" ] }
 thiserror = "1"
 walkdir = "2"
 brotli = { version = "3", optional = true, default-features = false, features = [ "std" ] }

+ 11 - 0
core/tauri-macros/CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+### Enhancements
+
+- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Use `Target` enum from `tauri_utils::platform`.
+
+### Dependencies
+
+- Upgraded to `tauri-codegen@2.0.0-alpha.8`
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+
 ## \[2.0.0-alpha.7]
 
 ### Dependencies

+ 3 - 3
core/tauri-macros/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-macros"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 description = "Macros for the tauri crate."
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -20,8 +20,8 @@ proc-macro2 = "1"
 quote = "1"
 syn = { version = "1", features = [ "full" ] }
 heck = "0.4"
-tauri-codegen = { version = "2.0.0-alpha.7", default-features = false, path = "../tauri-codegen" }
-tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
+tauri-codegen = { version = "2.0.0-alpha.8", default-features = false, path = "../tauri-codegen" }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }
 
 [features]
 custom-protocol = [ ]

+ 7 - 0
core/tauri-runtime-wry/CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog
 
+## \[1.0.0-alpha.3]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+- Upgraded to `tauri-runtime@1.0.0-alpha.2`
+
 ## \[1.0.0-alpha.2]
 
 ### Bug Fixes

+ 3 - 3
core/tauri-runtime-wry/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime-wry"
-version = "1.0.0-alpha.2"
+version = "1.0.0-alpha.3"
 description = "Wry bindings to the Tauri runtime"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -17,8 +17,8 @@ features = [ "dox" ]
 
 [dependencies]
 wry = { version = "0.33", default-features = false, features = [ "tao", "file-drop", "protocol" ] }
-tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
-tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
+tauri-runtime = { version = "1.0.0-alpha.2", path = "../tauri-runtime" }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 rand = "0.8"
 raw-window-handle = "0.5"

+ 6 - 0
core/tauri-runtime/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[1.0.0-alpha.2]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+
 ## \[1.0.0-alpha.1]
 
 ### Enhancements

+ 2 - 2
core/tauri-runtime/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-runtime"
-version = "1.0.0-alpha.1"
+version = "1.0.0-alpha.2"
 description = "Runtime for Tauri applications"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -26,7 +26,7 @@ targets = [
 serde = { version = "1.0", features = [ "derive" ] }
 serde_json = "1.0"
 thiserror = "1.0"
-tauri-utils = { version = "2.0.0-alpha.7", path = "../tauri-utils" }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../tauri-utils" }
 uuid = { version = "1", features = [ "v4" ] }
 http = "0.2.4"
 raw-window-handle = "0.5"

+ 10 - 0
core/tauri-utils/CHANGELOG.md

@@ -1,5 +1,15 @@
 # Changelog
 
+## \[2.0.0-alpha.8]
+
+### Enhancements
+
+- Add an option to specify `id` for the tray icon in the tauri configuration file.
+
+### Breaking Changes
+
+- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Follow file name conventions set by desktop for mobile Tauri configuration files. Added `target` argument on most `config::parse` methods.
+
 ## \[2.0.0-alpha.7]
 
 ### New Features

+ 1 - 1
core/tauri-utils/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri-utils"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 description = "Utilities for Tauri"
 exclude = [ "CHANGELOG.md", "/target" ]
 readme = "README.md"

+ 31 - 0
core/tauri/CHANGELOG.md

@@ -1,5 +1,36 @@
 # Changelog
 
+## \[2.0.0-alpha.15]
+
+### Enhancements
+
+- [`b597aa5f`](https://www.github.com/tauri-apps/tauri/commit/b597aa5f3974f5ca5ca5159d441abc9ed3e80721)([#7871](https://www.github.com/tauri-apps/tauri/pull/7871)) Set `main` as the default `id` for the tray icon registered from the configuration file, so if the `id` is not specified, it can be retrieved using `app.tray_by_id("main")`.
+
+### Bug Fixes
+
+- [`a2021c30`](https://www.github.com/tauri-apps/tauri/commit/a2021c30ba1139fcfe4db2522b96125f3fa4d9d6)([#7866](https://www.github.com/tauri-apps/tauri/pull/7866)) Changed `IconMenuItem::set_native_icon` signature to take `&self` instead of `&mut self` to fix compilation error on macos.
+- [`a68ccaf5`](https://www.github.com/tauri-apps/tauri/commit/a68ccaf59a6731dc030bdb4642a35e3bc64d5769)([#7822](https://www.github.com/tauri-apps/tauri/pull/7822)) Fix `asset` protocol failing to fetch files.
+- [`6fbd6dba`](https://www.github.com/tauri-apps/tauri/commit/6fbd6dba5290dc017ab0ba5a44cf4358b022836f)([#17](https://www.github.com/tauri-apps/tauri/pull/17)) Fix the validation of `std::env::current_exe` warn the user if AppImage is not mounted instead of panicking
+
+### Dependencies
+
+- Upgraded to `tauri-macros@2.0.0-alpha.8`
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+- Upgraded to `tauri-build@2.0.0-alpha.9`
+- Upgraded to `tauri-runtime@1.0.0-alpha.2`
+- Upgraded to `tauri-runtime-wry@1.0.0-alpha.3`
+
+### Breaking Changes
+
+- [`092a561c`](https://www.github.com/tauri-apps/tauri/commit/092a561ca69a631d2a03777e29debeba37b197a7)([#7874](https://www.github.com/tauri-apps/tauri/pull/7874)) Removed `tauri::api` module as most apis have been moved to either a plugin or we recommend using other crates.
+- [`deea9436`](https://www.github.com/tauri-apps/tauri/commit/deea9436261f651188e0bc86104779bf30029c32)([#7876](https://www.github.com/tauri-apps/tauri/pull/7876)) Changed `Env.args` to `Env.args_os` and now uses `OsString` instead of `String`
+- [`b7fd88e1`](https://www.github.com/tauri-apps/tauri/commit/b7fd88e18d24e4450129a5a5007f2e740c69afe5)([#7944](https://www.github.com/tauri-apps/tauri/pull/7944)) `tauri::scope` module is recieving a couple of consistency changes:
+
+  - Added `tauri::scope::fs` module.
+  - Removed `scope::IpcScope` re-export, use `scope::ipc::Scope`.
+  - Removed `FsScope`, `GlobPattern` and `FsScopeEvent`, use `scope::fs::Scope`, `scope::fs::Pattern` and `scope::fs::Event` respectively.
+- [`c0d03af4`](https://www.github.com/tauri-apps/tauri/commit/c0d03af4704c828698e06e9662dab1087c99c42e)([#7943](https://www.github.com/tauri-apps/tauri/pull/7943)) Changed `TrayIconBuilder/TrayIcon::on_tray_event` to `TrayIconBuilder/TrayIcon::on_tray_icon_event` for consistency of naming.
+
 ## \[2.0.0-alpha.14]
 
 ### Bug Fixes

+ 6 - 6
core/tauri/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "tauri"
-version = "2.0.0-alpha.14"
+version = "2.0.0-alpha.15"
 description = "Make tiny, secure apps for all desktop platforms with Tauri"
 exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
 readme = "README.md"
@@ -48,10 +48,10 @@ url = { version = "2.4" }
 anyhow = "1.0"
 thiserror = "1.0"
 once_cell = "1"
-tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
-tauri-macros = { version = "2.0.0-alpha.7", path = "../tauri-macros" }
-tauri-utils = { version = "2.0.0-alpha.7", features = [ "resources" ], path = "../tauri-utils" }
-tauri-runtime-wry = { version = "1.0.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
+tauri-runtime = { version = "1.0.0-alpha.2", path = "../tauri-runtime" }
+tauri-macros = { version = "2.0.0-alpha.8", path = "../tauri-macros" }
+tauri-utils = { version = "2.0.0-alpha.8", features = [ "resources" ], path = "../tauri-utils" }
+tauri-runtime-wry = { version = "1.0.0-alpha.3", path = "../tauri-runtime-wry", optional = true }
 rand = "0.8"
 serde_repr = "0.1"
 state = "0.6"
@@ -107,7 +107,7 @@ swift-rs = "1.0.5"
 [build-dependencies]
 heck = "0.4"
 once_cell = "1"
-tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.8" }
+tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.9" }
 
 [dev-dependencies]
 proptest = "1.2.0"

+ 6 - 0
tooling/bundler/CHANGELOG.md

@@ -1,5 +1,11 @@
 # Changelog
 
+## \[2.0.0-alpha.9]
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+
 ## \[2.0.0-alpha.8]
 
 ### Enhancements

+ 2 - 2
tooling/bundler/Cargo.toml

@@ -2,7 +2,7 @@ workspace = { }
 
 [package]
 name = "tauri-bundler"
-version = "2.0.0-alpha.8"
+version = "2.0.0-alpha.9"
 authors = [
   "George Burton <burtonageo@gmail.com>",
   "Tauri Programme within The Commons Conservancy"
@@ -17,7 +17,7 @@ rust-version = "1.65"
 exclude = [ "CHANGELOG.md", "/target", "rustfmt.toml" ]
 
 [dependencies]
-tauri-utils = { version = "2.0.0-alpha.7", path = "../../core/tauri-utils", features = [ "resources" ] }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../../core/tauri-utils", features = [ "resources" ] }
 image = "0.24.7"
 libflate = "2.0"
 anyhow = "1.0"

+ 16 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,21 @@
 # Changelog
 
+## \[2.0.0-alpha.15]
+
+### New Features
+
+- [`b2f17723`](https://www.github.com/tauri-apps/tauri/commit/b2f17723a415f04c2620132a6305eb138d7cb47f)([#7971](https://www.github.com/tauri-apps/tauri/pull/7971)) Use `devicectl` to connect to iOS 17+ devices on macOS 14+.
+
+### Bug Fixes
+
+- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Properly read platform-specific configuration files for mobile targets.
+- [`228e5a4c`](https://www.github.com/tauri-apps/tauri/commit/228e5a4c76ad5f97409c912d07699b49ba4bb162)([#7902](https://www.github.com/tauri-apps/tauri/pull/7902)) Fixes `icon` command not writing files to the correct Android project folders.
+
+### Dependencies
+
+- Upgraded to `tauri-utils@2.0.0-alpha.8`
+- Upgraded to `tauri-bundler@2.0.0-alpha.9`
+
 ## \[2.0.0-alpha.14]
 
 ### Breaking Changes

+ 5 - 5
tooling/cli/Cargo.lock

@@ -3976,7 +3976,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-bundler"
-version = "2.0.0-alpha.8"
+version = "2.0.0-alpha.9"
 dependencies = [
  "anyhow",
  "ar",
@@ -4003,7 +4003,7 @@ dependencies = [
  "strsim",
  "tar",
  "tauri-icns",
- "tauri-utils 2.0.0-alpha.7",
+ "tauri-utils 2.0.0-alpha.8",
  "tempfile",
  "thiserror",
  "time",
@@ -4016,7 +4016,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "2.0.0-alpha.14"
+version = "2.0.0-alpha.15"
 dependencies = [
  "anyhow",
  "axum",
@@ -4065,7 +4065,7 @@ dependencies = [
  "tauri-bundler",
  "tauri-icns",
  "tauri-utils 1.5.0",
- "tauri-utils 2.0.0-alpha.7",
+ "tauri-utils 2.0.0-alpha.8",
  "textwrap",
  "thiserror",
  "tokio",
@@ -4132,7 +4132,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-utils"
-version = "2.0.0-alpha.7"
+version = "2.0.0-alpha.8"
 dependencies = [
  "aes-gcm",
  "ctor 0.1.26",

+ 3 - 3
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "2.0.0-alpha.14"
+version = "2.0.0-alpha.15"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.65"
@@ -50,7 +50,7 @@ sublime_fuzzy = "0.7"
 clap_complete = "4"
 clap = { version = "4.0", features = [ "derive" ] }
 anyhow = "1.0"
-tauri-bundler = { version = "2.0.0-alpha.8", default-features = false, path = "../bundler" }
+tauri-bundler = { version = "2.0.0-alpha.9", default-features = false, path = "../bundler" }
 colored = "2.0"
 once_cell = "1"
 serde = { version = "1.0", features = [ "derive" ] }
@@ -61,7 +61,7 @@ shared_child = "1.0"
 duct = "0.13"
 toml_edit = "0.14"
 json-patch = "1.0"
-tauri-utils = { version = "2.0.0-alpha.7", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
+tauri-utils = { version = "2.0.0-alpha.8", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
 tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
 toml = "0.5"
 jsonschema = "0.16"

+ 3 - 3
tooling/cli/metadata-v2.json

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

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

@@ -1,5 +1,20 @@
 # Changelog
 
+## \[2.0.0-alpha.15]
+
+### New Features
+
+- [`b2f17723`](https://www.github.com/tauri-apps/tauri/commit/b2f17723a415f04c2620132a6305eb138d7cb47f)([#7971](https://www.github.com/tauri-apps/tauri/pull/7971)) Use `devicectl` to connect to iOS 17+ devices on macOS 14+.
+
+### Bug Fixes
+
+- [`100d9ede`](https://www.github.com/tauri-apps/tauri/commit/100d9ede35995d9db21d2087dd5606adfafb89a5)([#7802](https://www.github.com/tauri-apps/tauri/pull/7802)) Properly read platform-specific configuration files for mobile targets.
+- [`228e5a4c`](https://www.github.com/tauri-apps/tauri/commit/228e5a4c76ad5f97409c912d07699b49ba4bb162)([#7902](https://www.github.com/tauri-apps/tauri/pull/7902)) Fixes `icon` command not writing files to the correct Android project folders.
+
+### Dependencies
+
+- Upgraded to `tauri-cli@2.0.0-alpha.15`
+
 ## \[2.0.0-alpha.14]
 
 ### Dependencies

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

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