Apply Version Updates From Current Changes (#7811)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-09-11 13:00:21 -03:00 committed by GitHub
parent d5074af562
commit 3c66a53a9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 53 additions and 9 deletions

View File

@ -51,6 +51,7 @@
".changes/core-navigate-method.md",
".changes/core-remove-file-dir-semver-apis.md",
".changes/core-wry-0-28.md",
".changes/custom-protocol-http-android.md",
".changes/custom-protocol-response-refactor.md",
".changes/dark-light-mica-effect.md",
".changes/default-tls-features.md",
@ -90,6 +91,7 @@
".changes/fix-tauri-binary-windows.md",
".changes/fix-tray-icon-validation.md",
".changes/fix-windows-custom-protocol-url.md",
".changes/fix-windows-custom-protocol.md",
".changes/fix-xcodescript-lib-path.md",
".changes/force-colored-logs.md",
".changes/generate-tauri-activity.md",

View File

@ -1,5 +1,11 @@
# Changelog
## \[1.0.0-alpha.2]
### Bug Fixes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) Fixes custom protocol not working on Windows.
## \[1.0.0-alpha.1]
### Enhancements

View File

@ -1,6 +1,6 @@
[package]
name = "tauri-runtime-wry"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
description = "Wry bindings to the Tauri runtime"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

View File

@ -1,5 +1,19 @@
# Changelog
## \[2.0.0-alpha.14]
### Bug Fixes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) Fixes custom protocol not working on Windows.
### Dependencies
- Upgraded to `tauri-runtime-wry@1.0.0-alpha.2`
### Breaking Changes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.13]
### Breaking Changes

View File

@ -1,6 +1,6 @@
[package]
name = "tauri"
version = "2.0.0-alpha.13"
version = "2.0.0-alpha.14"
description = "Make tiny, secure apps for all desktop platforms with Tauri"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
readme = "README.md"
@ -50,7 +50,7 @@ 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.1", path = "../tauri-runtime-wry", optional = true }
tauri-runtime-wry = { version = "1.0.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
rand = "0.8"
serde_repr = "0.1"
state = "0.6"

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.8]
### Breaking Changes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.7]
### Breaking Changes

View File

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

View File

@ -1,5 +1,11 @@
# Changelog
## \[2.0.0-alpha.14]
### Breaking Changes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.13]
### Breaking Changes

View File

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

View File

@ -3,7 +3,7 @@ members = [ "node" ]
[package]
name = "tauri-cli"
version = "2.0.0-alpha.13"
version = "2.0.0-alpha.14"
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.13",
"version": "2.0.0-alpha.14",
"node": ">= 10.0.0"
},
"tauri": "2.0.0-alpha.13",
"tauri": "2.0.0-alpha.14",
"tauri-build": "2.0.0-alpha.8"
}

View File

@ -1,5 +1,15 @@
# Changelog
## \[2.0.0-alpha.14]
### Dependencies
- Upgraded to `tauri-cli@2.0.0-alpha.14`
### Breaking Changes
- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`.
## \[2.0.0-alpha.13]
### Dependencies

View File

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