Browse Source

Apply Version Updates From Current Changes (#3392)

Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
Co-authored-by: Lucas Nogueira <lucas@tauri.studio>
github-actions[bot] 3 years ago
parent
commit
5c0a8bfef7
4 changed files with 16 additions and 3 deletions
  1. 1 0
      .changes/pre.json
  2. 5 0
      tooling/cli/CHANGELOG.md
  3. 1 1
      tooling/cli/Cargo.lock
  4. 9 2
      tooling/cli/Cargo.toml

+ 1 - 0
.changes/pre.json

@@ -40,6 +40,7 @@
     ".changes/clap-beta.4-core.md",
     ".changes/clap-beta.4.md",
     ".changes/cli-config-path.md",
+    ".changes/cli-include-vswhere.md",
     ".changes/cli.js-cjs-output.md",
     ".changes/cli.js-fix-ico.md",
     ".changes/cli.rs-active-toolchain.md",

+ 5 - 0
tooling/cli/CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## \[1.0.0-rc.1]
+
+- Include `vswhere.exe` on the published package.
+  - [3227502e](https://www.github.com/tauri-apps/tauri/commit/3227502e8c9f137e5783cba2e0c692473cc5456d) fix(cli.rs): package `vswhere.exe` on 2022-02-10
+
 ## \[1.0.0-rc.0]
 
 - Do not force Tauri application code on `src-tauri` folder and use a glob pattern to look for a subfolder with a `tauri.conf.json` file.

+ 1 - 1
tooling/cli/Cargo.lock

@@ -2687,7 +2687,7 @@ dependencies = [
 
 [[package]]
 name = "tauri-cli"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 dependencies = [
  "anyhow",
  "base64",

+ 9 - 2
tooling/cli/Cargo.toml

@@ -3,7 +3,7 @@ members = [ "node" ]
 
 [package]
 name = "tauri-cli"
-version = "1.0.0-rc.0"
+version = "1.0.0-rc.1"
 authors = [ "Tauri Programme within The Commons Conservancy" ]
 edition = "2021"
 rust-version = "1.57"
@@ -12,7 +12,14 @@ license = "Apache-2.0 OR MIT"
 homepage = "https://tauri.studio"
 repository = "https://github.com/tauri-apps/tauri"
 description = "Command line interface for building Tauri apps"
-include = [ "src/", "/templates", "MergeModules/", "*.json", "*.rs", "vswhere.exe" ]
+include = [
+  "src/",
+  "/templates",
+  "MergeModules/",
+  "*.json",
+  "*.rs",
+  "vswhere.exe"
+]
 
 [[bin]]
 name = "cargo-tauri"