mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
Apply Version Updates From Current Changes (#4175)
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
This commit is contained in:
committed by
GitHub
parent
d0233db317
commit
8b6bb6720c
@@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.6]
|
||||
|
||||
- Expose option to set the dialog type.
|
||||
- [f46175d5](https://www.github.com/tauri-apps/tauri/commit/f46175d5d46fa3eae66ad2415a0eb1efb7d31da2) feat(core): expose option to set dialog type, closes [#4183](https://www.github.com/tauri-apps/tauri/pull/4183) ([#4187](https://www.github.com/tauri-apps/tauri/pull/4187)) on 2022-05-21
|
||||
- Expose `title` option in the message dialog API.
|
||||
- [ae99f991](https://www.github.com/tauri-apps/tauri/commit/ae99f991674d77c322a2240d10ed4b78ed2f4d4b) feat(core): expose message dialog's title option, ref [#4183](https://www.github.com/tauri-apps/tauri/pull/4183) ([#4186](https://www.github.com/tauri-apps/tauri/pull/4186)) on 2022-05-21
|
||||
|
||||
## \[1.0.0-rc.5]
|
||||
|
||||
- Fixes the type of `http > connectTimeout`.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/api",
|
||||
"version": "1.0.0-rc.5",
|
||||
"version": "1.0.0-rc.6",
|
||||
"description": "Tauri API definitions",
|
||||
"type": "module",
|
||||
"funding": {
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.8]
|
||||
|
||||
- Use binary arch instead of `x86_64` on the AppImage bundle script.
|
||||
- [6830a739](https://www.github.com/tauri-apps/tauri/commit/6830a739535e920f1857a1946fb69750a6d7b92f) fix(bundler): use binary arch on appimage bundle script ([#4194](https://www.github.com/tauri-apps/tauri/pull/4194)) on 2022-05-23
|
||||
- Fixes lost files on upgrade due to wrong implementation to keep shortcuts.
|
||||
- [8539e02f](https://www.github.com/tauri-apps/tauri/commit/8539e02f7fd56cc47b25ed45c8403d66abe262ac) fix(bundler): wix upgrade do not installing new files, closes [#4182](https://www.github.com/tauri-apps/tauri/pull/4182) on 2022-05-21
|
||||
|
||||
## \[1.0.0-rc.7]
|
||||
|
||||
- Change `tsp` value from `Option<bool>` to `bool`.
|
||||
|
||||
@@ -2,7 +2,7 @@ workspace = { }
|
||||
|
||||
[package]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-rc.7"
|
||||
version = "1.0.0-rc.8"
|
||||
authors = [
|
||||
"George Burton <burtonageo@gmail.com>",
|
||||
"Tauri Programme within The Commons Conservancy"
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.12]
|
||||
|
||||
- Properly fetch the NPM dependency information when using Yarn 2+.
|
||||
- [cdfa6255](https://www.github.com/tauri-apps/tauri/commit/cdfa62551115586725bd3e4c04f12c5256f20790) fix(cli): properly read info when using yarn 2+, closes [#4106](https://www.github.com/tauri-apps/tauri/pull/4106) ([#4193](https://www.github.com/tauri-apps/tauri/pull/4193)) on 2022-05-23
|
||||
|
||||
## \[1.0.0-rc.11]
|
||||
|
||||
- Allow configuring the display options for the MSI execution allowing quieter updates.
|
||||
|
||||
4
tooling/cli/Cargo.lock
generated
4
tooling/cli/Cargo.lock
generated
@@ -2699,7 +2699,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-bundler"
|
||||
version = "1.0.0-rc.7"
|
||||
version = "1.0.0-rc.8"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"ar",
|
||||
@@ -2734,7 +2734,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-rc.11"
|
||||
version = "1.0.0-rc.12"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"base64",
|
||||
|
||||
@@ -3,7 +3,7 @@ members = [ "node" ]
|
||||
|
||||
[package]
|
||||
name = "tauri-cli"
|
||||
version = "1.0.0-rc.11"
|
||||
version = "1.0.0-rc.12"
|
||||
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
||||
edition = "2021"
|
||||
rust-version = "1.57"
|
||||
@@ -30,7 +30,7 @@ path = "src/main.rs"
|
||||
[dependencies]
|
||||
clap = { version = "3.1", features = [ "derive" ] }
|
||||
anyhow = "1.0"
|
||||
tauri-bundler = { version = "1.0.0-rc.7", path = "../bundler" }
|
||||
tauri-bundler = { version = "1.0.0-rc.8", path = "../bundler" }
|
||||
colored = "2.0"
|
||||
once_cell = "1.10"
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"cli.js": {
|
||||
"version": "1.0.0-rc.11",
|
||||
"version": "1.0.0-rc.12",
|
||||
"node": ">= 10.0.0"
|
||||
},
|
||||
"tauri": "1.0.0-rc.11",
|
||||
"tauri-build": "1.0.0-rc.9"
|
||||
"tauri": "1.0.0-rc.12",
|
||||
"tauri-build": "1.0.0-rc.10"
|
||||
}
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
## \[1.0.0-rc.12]
|
||||
|
||||
- Properly fetch the NPM dependency information when using Yarn 2+.
|
||||
- [cdfa6255](https://www.github.com/tauri-apps/tauri/commit/cdfa62551115586725bd3e4c04f12c5256f20790) fix(cli): properly read info when using yarn 2+, closes [#4106](https://www.github.com/tauri-apps/tauri/pull/4106) ([#4193](https://www.github.com/tauri-apps/tauri/pull/4193)) on 2022-05-23
|
||||
|
||||
## \[1.0.0-rc.11]
|
||||
|
||||
- Allow configuring the display options for the MSI execution allowing quieter updates.
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tauri-apps/cli",
|
||||
"version": "1.0.0-rc.11",
|
||||
"version": "1.0.0-rc.12",
|
||||
"description": "Command line interface for building Tauri apps",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
|
||||
Reference in New Issue
Block a user