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:
github-actions[bot]
2022-05-24 15:35:35 -03:00
committed by GitHub
parent d0233db317
commit 8b6bb6720c
19 changed files with 98 additions and 23 deletions

View File

@@ -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.

View File

@@ -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",

View File

@@ -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" ] }

View File

@@ -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"
}

View File

@@ -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.

View File

@@ -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",