Skip to content

Commit 3c66a53

Browse files
Apply Version Updates From Current Changes (#7811)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
1 parent d5074af commit 3c66a53

File tree

13 files changed

+53
-9
lines changed

13 files changed

+53
-9
lines changed

.changes/pre.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
".changes/core-navigate-method.md",
5252
".changes/core-remove-file-dir-semver-apis.md",
5353
".changes/core-wry-0-28.md",
54+
".changes/custom-protocol-http-android.md",
5455
".changes/custom-protocol-response-refactor.md",
5556
".changes/dark-light-mica-effect.md",
5657
".changes/default-tls-features.md",
@@ -90,6 +91,7 @@
9091
".changes/fix-tauri-binary-windows.md",
9192
".changes/fix-tray-icon-validation.md",
9293
".changes/fix-windows-custom-protocol-url.md",
94+
".changes/fix-windows-custom-protocol.md",
9395
".changes/fix-xcodescript-lib-path.md",
9496
".changes/force-colored-logs.md",
9597
".changes/generate-tauri-activity.md",

core/tauri-runtime-wry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[1.0.0-alpha.2]
4+
5+
### Bug Fixes
6+
7+
- [`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.
8+
39
## \[1.0.0-alpha.1]
410

511
### Enhancements

core/tauri-runtime-wry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-runtime-wry"
3-
version = "1.0.0-alpha.1"
3+
version = "1.0.0-alpha.2"
44
description = "Wry bindings to the Tauri runtime"
55
exclude = [ "CHANGELOG.md", "/target" ]
66
readme = "README.md"

core/tauri/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.14]
4+
5+
### Bug Fixes
6+
7+
- [`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.
8+
9+
### Dependencies
10+
11+
- Upgraded to `tauri-runtime-wry@1.0.0-alpha.2`
12+
13+
### Breaking Changes
14+
15+
- [`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`.
16+
317
## \[2.0.0-alpha.13]
418

519
### Breaking Changes

core/tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri"
3-
version = "2.0.0-alpha.13"
3+
version = "2.0.0-alpha.14"
44
description = "Make tiny, secure apps for all desktop platforms with Tauri"
55
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
66
readme = "README.md"
@@ -50,7 +50,7 @@ once_cell = "1"
5050
tauri-runtime = { version = "1.0.0-alpha.1", path = "../tauri-runtime" }
5151
tauri-macros = { version = "2.0.0-alpha.7", path = "../tauri-macros" }
5252
tauri-utils = { version = "2.0.0-alpha.7", features = [ "resources" ], path = "../tauri-utils" }
53-
tauri-runtime-wry = { version = "1.0.0-alpha.1", path = "../tauri-runtime-wry", optional = true }
53+
tauri-runtime-wry = { version = "1.0.0-alpha.2", path = "../tauri-runtime-wry", optional = true }
5454
rand = "0.8"
5555
serde_repr = "0.1"
5656
state = "0.6"

tooling/api/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.8]
4+
5+
### Breaking Changes
6+
7+
- [`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`.
8+
39
## \[2.0.0-alpha.7]
410

511
### Breaking Changes

tooling/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tauri-apps/api",
3-
"version": "2.0.0-alpha.7",
3+
"version": "2.0.0-alpha.8",
44
"description": "Tauri API definitions",
55
"type": "module",
66
"funding": {

tooling/cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## \[2.0.0-alpha.14]
4+
5+
### Breaking Changes
6+
7+
- [`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`.
8+
39
## \[2.0.0-alpha.13]
410

511
### Breaking Changes

tooling/cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tooling/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [ "node" ]
33

44
[package]
55
name = "tauri-cli"
6-
version = "2.0.0-alpha.13"
6+
version = "2.0.0-alpha.14"
77
authors = [ "Tauri Programme within The Commons Conservancy" ]
88
edition = "2021"
99
rust-version = "1.65"

0 commit comments

Comments
 (0)