Apply Version Updates From Current Changes (#7770)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-09-08 11:49:37 -03:00 committed by GitHub
parent 6735994885
commit a6a42f8f0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 39 additions and 7 deletions

View File

@ -89,6 +89,7 @@
".changes/fix-shell-build.md",
".changes/fix-tauri-binary-windows.md",
".changes/fix-tray-icon-validation.md",
".changes/fix-windows-custom-protocol-url.md",
".changes/fix-xcodescript-lib-path.md",
".changes/force-colored-logs.md",
".changes/generate-tauri-activity.md",
@ -135,6 +136,7 @@
".changes/mobile-plugins.md",
".changes/mobile-webview-access.md",
".changes/mobile.md",
".changes/move-add-command.md",
".changes/move-app.md",
".changes/move-cli.md",
".changes/move-dialog-plugin.md",

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.13]
### Breaking Changes
- [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.12]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-alpha.12"
version = "2.0.0-alpha.13"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.7]
### Breaking Changes
- [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.6]
### New Features

View File

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

View File

@ -1,5 +1,12 @@
# Changelog
## \[2.0.0-alpha.13]
### Breaking Changes
- [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`.
- [`974e38b4`](https://www.github.com/tauri-apps/tauri/commit/974e38b4ddc198530aa977ec77d513b76013b9f3)([#7744](https://www.github.com/tauri-apps/tauri/pull/7744)) Renamed the `plugin add` command to `add`.
## \[2.0.0-alpha.12]
### Bug Fixes

View File

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

View File

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

View File

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

View File

@ -1,5 +1,16 @@
# Changelog
## \[2.0.0-alpha.13]
### Dependencies
- Upgraded to `tauri-cli@2.0.0-alpha.13`
### Breaking Changes
- [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`.
- [`974e38b4`](https://www.github.com/tauri-apps/tauri/commit/974e38b4ddc198530aa977ec77d513b76013b9f3)([#7744](https://www.github.com/tauri-apps/tauri/pull/7744)) Renamed the `plugin add` command to `add`.
## \[2.0.0-alpha.12]
### Bug Fixes

View File

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