Apply Version Updates From Current Changes (#7612)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
github-actions[bot] 2023-08-14 12:19:36 -03:00 committed by GitHub
parent e27b829b36
commit 3bf1bce9ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 4 deletions

View File

@ -10,6 +10,7 @@
".changes/android-load-config.md",
".changes/android-on-new-intent.md",
".changes/android-plugin-command-exception.md",
".changes/api-ipc-refactor.md",
".changes/build-android-env-vars.md",
".changes/bump-1.3.md",
".changes/bundler-remove-dialog-option.md",
@ -80,6 +81,7 @@
".changes/fix-proguard-rules.md",
".changes/fix-shell-build.md",
".changes/fix-tauri-binary-windows.md",
".changes/fix-tray-icon-validation.md",
".changes/fix-xcodescript-lib-path.md",
".changes/force-colored-logs.md",
".changes/generate-tauri-activity.md",

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.8]
### Bug Fixes
- [`560b34dd`](https://www.github.com/tauri-apps/tauri/commit/560b34dd2a194ad62db09b3e9e41a2cfff4e5710)([#7610](https://www.github.com/tauri-apps/tauri/pull/7610)) Skip validation of the `tray-icon` feature flag.
## \[2.0.0-alpha.7]
### New Features

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-build"
version = "2.0.0-alpha.7"
version = "2.0.0-alpha.8"
description = "build time code to pair with https://crates.io/crates/tauri"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -104,7 +104,7 @@ swift-rs = "1.0.5"
[build-dependencies]
heck = "0.4"
once_cell = "1"
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.7" }
tauri-build = { path = "../tauri-build/", version = "2.0.0-alpha.8" }
[dev-dependencies]
proptest = "1.2.0"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.6]
### New Features
- [`4af5c5a8`](https://www.github.com/tauri-apps/tauri/commit/4af5c5a8293263c16f8a65e8d232f2de52f41701)([#7170](https://www.github.com/tauri-apps/tauri/pull/7170)) Change the IPC call to align with the new format for the custom protocol based API.
## \[2.0.0-alpha.5]
### New Features

View File

@ -1,6 +1,6 @@
{
"name": "@tauri-apps/api",
"version": "2.0.0-alpha.5",
"version": "2.0.0-alpha.6",
"description": "Tauri API definitions",
"type": "module",
"funding": {

View File

@ -4,5 +4,5 @@
"node": ">= 10.0.0"
},
"tauri": "2.0.0-alpha.11",
"tauri-build": "2.0.0-alpha.7"
"tauri-build": "2.0.0-alpha.8"
}