mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 11:13:40 +03:00
Apply Version Updates From Current Changes (#7770)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
parent
6735994885
commit
a6a42f8f0a
@ -89,6 +89,7 @@
|
|||||||
".changes/fix-shell-build.md",
|
".changes/fix-shell-build.md",
|
||||||
".changes/fix-tauri-binary-windows.md",
|
".changes/fix-tauri-binary-windows.md",
|
||||||
".changes/fix-tray-icon-validation.md",
|
".changes/fix-tray-icon-validation.md",
|
||||||
|
".changes/fix-windows-custom-protocol-url.md",
|
||||||
".changes/fix-xcodescript-lib-path.md",
|
".changes/fix-xcodescript-lib-path.md",
|
||||||
".changes/force-colored-logs.md",
|
".changes/force-colored-logs.md",
|
||||||
".changes/generate-tauri-activity.md",
|
".changes/generate-tauri-activity.md",
|
||||||
@ -135,6 +136,7 @@
|
|||||||
".changes/mobile-plugins.md",
|
".changes/mobile-plugins.md",
|
||||||
".changes/mobile-webview-access.md",
|
".changes/mobile-webview-access.md",
|
||||||
".changes/mobile.md",
|
".changes/mobile.md",
|
||||||
|
".changes/move-add-command.md",
|
||||||
".changes/move-app.md",
|
".changes/move-app.md",
|
||||||
".changes/move-cli.md",
|
".changes/move-cli.md",
|
||||||
".changes/move-dialog-plugin.md",
|
".changes/move-dialog-plugin.md",
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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]
|
## \[2.0.0-alpha.12]
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tauri"
|
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"
|
description = "Make tiny, secure apps for all desktop platforms with Tauri"
|
||||||
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
|
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# 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]
|
## \[2.0.0-alpha.6]
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tauri-apps/api",
|
"name": "@tauri-apps/api",
|
||||||
"version": "2.0.0-alpha.6",
|
"version": "2.0.0-alpha.7",
|
||||||
"description": "Tauri API definitions",
|
"description": "Tauri API definitions",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"funding": {
|
"funding": {
|
||||||
|
@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# 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]
|
## \[2.0.0-alpha.12]
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
2
tooling/cli/Cargo.lock
generated
2
tooling/cli/Cargo.lock
generated
@ -3945,7 +3945,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tauri-cli"
|
name = "tauri-cli"
|
||||||
version = "2.0.0-alpha.12"
|
version = "2.0.0-alpha.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"axum",
|
"axum",
|
||||||
|
@ -3,7 +3,7 @@ members = [ "node" ]
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "tauri-cli"
|
name = "tauri-cli"
|
||||||
version = "2.0.0-alpha.12"
|
version = "2.0.0-alpha.13"
|
||||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.65"
|
rust-version = "1.65"
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"cli.js": {
|
"cli.js": {
|
||||||
"version": "2.0.0-alpha.12",
|
"version": "2.0.0-alpha.13",
|
||||||
"node": ">= 10.0.0"
|
"node": ">= 10.0.0"
|
||||||
},
|
},
|
||||||
"tauri": "2.0.0-alpha.12",
|
"tauri": "2.0.0-alpha.13",
|
||||||
"tauri-build": "2.0.0-alpha.8"
|
"tauri-build": "2.0.0-alpha.8"
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,16 @@
|
|||||||
# Changelog
|
# 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]
|
## \[2.0.0-alpha.12]
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tauri-apps/cli",
|
"name": "@tauri-apps/cli",
|
||||||
"version": "2.0.0-alpha.12",
|
"version": "2.0.0-alpha.13",
|
||||||
"description": "Command line interface for building Tauri apps",
|
"description": "Command line interface for building Tauri apps",
|
||||||
"funding": {
|
"funding": {
|
||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
|
Loading…
Reference in New Issue
Block a user