mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 20:48:52 +03:00
Apply Version Updates From Current Changes (#2113)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
This commit is contained in:
parent
99d960841c
commit
4339b46e4b
@ -37,6 +37,7 @@
|
||||
".changes/cargo-cache.md",
|
||||
".changes/child-process-cleanup.md",
|
||||
".changes/cli-error-logging.md",
|
||||
".changes/cli-error-message.md",
|
||||
".changes/cli-init-infer-prompts.md",
|
||||
".changes/cli-rs-info-webview2.md",
|
||||
".changes/cli-runner-arg.md",
|
||||
@ -77,6 +78,7 @@
|
||||
".changes/cta-vite-esbuild-install-direct.md",
|
||||
".changes/cta-vite-templates.md",
|
||||
".changes/cta-welcome-prompt-and-links.md",
|
||||
".changes/dblclick-tauri-drag-maximize.md",
|
||||
".changes/debian-depends.md",
|
||||
".changes/default-params-type.md",
|
||||
".changes/dev-copy-resources.md",
|
||||
@ -100,6 +102,7 @@
|
||||
".changes/fix-cli.rs-bundle-arg.md",
|
||||
".changes/fix-command-event-channel.md",
|
||||
".changes/fix-command-named-cmd.md",
|
||||
".changes/fix-custom-protocol.md",
|
||||
".changes/fix-dialog-allowlist..md",
|
||||
".changes/fix-dmg-volume-icon.md",
|
||||
".changes/fix-drag-and-drop.md",
|
||||
|
@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.4]
|
||||
|
||||
- Double clicking a `data-tauri-drag-region` element will toggle the window maximized state.
|
||||
- [8b7ac1ad](https://www.github.com/tauri-apps/tauri/commit/8b7ac1ad1432db1fb1b85b3f72d336b303414554) feat: double-click tauri-drag-region to maximize, closes [#1839](https://www.github.com/tauri-apps/tauri/pull/1839) ([#2106](https://www.github.com/tauri-apps/tauri/pull/2106)) on 2021-06-29
|
||||
- Fixes `asset` protocol crashing application.
|
||||
- [99d96084](https://www.github.com/tauri-apps/tauri/commit/99d960841c4411c3805219d07640185b1d04c37a) fix(core): custom protocol regression ([#2115](https://www.github.com/tauri-apps/tauri/pull/2115)) on 2021-06-28
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Fixes `api::process::Command` events not firing consistently.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tauri"
|
||||
version = "1.0.0-beta.3"
|
||||
version = "1.0.0-beta.4"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
categories = [ "gui", "web-programming" ]
|
||||
license = "Apache-2.0 OR MIT"
|
||||
|
@ -1,5 +1,11 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.5]
|
||||
|
||||
- Improve error message when the product name is invalid.
|
||||
- Bumped due to a bump in cli.rs.
|
||||
- [1a41e9f0](https://www.github.com/tauri-apps/tauri/commit/1a41e9f040cfa18b6cc1380dfe21251d56e3f973) feat(cli.rs): improve error message on app rename, closes [#2101](https://www.github.com/tauri-apps/tauri/pull/2101) ([#2114](https://www.github.com/tauri-apps/tauri/pull/2114)) on 2021-06-28
|
||||
|
||||
## \[1.0.0-beta.4]
|
||||
|
||||
- Properly detect target platform's architecture.
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/cli",
|
||||
"version": "1.0.0-beta.4",
|
||||
"version": "1.0.0-beta.5",
|
||||
"description": "Command line interface for building Tauri apps",
|
||||
"bin": {
|
||||
"tauri": "./bin/tauri.js"
|
||||
|
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-beta.4]
|
||||
|
||||
- Improve error message when the product name is invalid.
|
||||
- [1a41e9f0](https://www.github.com/tauri-apps/tauri/commit/1a41e9f040cfa18b6cc1380dfe21251d56e3f973) feat(cli.rs): improve error message on app rename, closes [#2101](https://www.github.com/tauri-apps/tauri/pull/2101) ([#2114](https://www.github.com/tauri-apps/tauri/pull/2114)) on 2021-06-28
|
||||
|
||||
## \[1.0.0-beta.3]
|
||||
|
||||
- Properly detect target platform's architecture.
|
||||
|
2
tooling/cli.rs/Cargo.lock
generated
2
tooling/cli.rs/Cargo.lock
generated
@ -1914,7 +1914,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-beta.3"
|
||||
version = "1.0.0-beta.4"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
|
@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-beta.3"
|
||||
version = "1.0.0-beta.4"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
edition = "2018"
|
||||
categories = [ "gui", "web-programming" ]
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"cli.js": {
|
||||
"version": "1.0.0-beta.4",
|
||||
"version": "1.0.0-beta.5",
|
||||
"node": ">= 12.13.0"
|
||||
},
|
||||
"tauri": "1.0.0-beta.3",
|
||||
"tauri": "1.0.0-beta.4",
|
||||
"tauri-build": "1.0.0-beta.2"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user