@tauri-apps/cli 1.0.0-rc.1 → 1.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.2]
4
+
5
+ - Fixes Tauri path resolution on projects without Git or a `.gitignore` file.
6
+ - [d8acbe11](https://www.github.com/tauri-apps/tauri/commit/d8acbe11492bd990e6983c7e63e0f1a8f1ea5c7c) fix(cli.rs): app path resolution on projects without git, closes [#3409](https://www.github.com/tauri-apps/tauri/pull/3409) ([#3410](https://www.github.com/tauri-apps/tauri/pull/3410)) on 2022-02-11
7
+
3
8
  ## \[1.0.0-rc.1]
4
9
 
5
10
  - Fix `init` command prompting for values even if the argument has been provided on the command line.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.0.0-rc.2",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -61,13 +61,13 @@
61
61
  "format:check": "prettier --check ./package.json ./tauri.js"
62
62
  },
63
63
  "optionalDependencies": {
64
- "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.1",
65
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.1",
66
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.1",
67
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.1",
68
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.1",
69
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.1",
70
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.1",
71
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.1"
64
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.2",
65
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.2",
66
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.2",
67
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.2",
68
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.2",
69
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.2",
70
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.2",
71
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.2"
72
72
  }
73
73
  }