@tauri-apps/cli 1.0.0-rc.7 → 1.0.0-rc.8

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 (3) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/Cargo.toml +2 -2
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.8]
4
+
5
+ - Allows the `tauri.conf.json` file to be git ignored on the path lookup function.
6
+ - [cc7c2d77](https://www.github.com/tauri-apps/tauri/commit/cc7c2d77da2e4a39ec2a97b080d41a719e6d0161) feat(cli): allow conf path to be gitignored, closes [#3636](https://www.github.com/tauri-apps/tauri/pull/3636) ([#3683](https://www.github.com/tauri-apps/tauri/pull/3683)) on 2022-03-13
7
+ - Remove `minimumSystemVersion: null` from the application template configuration.
8
+ - [c81534eb](https://www.github.com/tauri-apps/tauri/commit/c81534ebd873c358e0346c7949aeb171803149a5) feat(cli): use default macOS minimum system version when it is empty ([#3658](https://www.github.com/tauri-apps/tauri/pull/3658)) on 2022-03-13
9
+ - Improve readability of the `info` subcommand output.
10
+ - [49d2f13f](https://www.github.com/tauri-apps/tauri/commit/49d2f13fc07d763d5de9bf4b19d00c901776c11d) feat(cli): colorful cli ([#3635](https://www.github.com/tauri-apps/tauri/pull/3635)) on 2022-03-08
11
+ - Fixes DMG bundling on macOS 12.3.
12
+ - [348a1ab5](https://www.github.com/tauri-apps/tauri/commit/348a1ab59d2697478a594016016f1fccbf1ac054) fix(bundler): DMG bundling on macOS 12.3 cannot use bless, closes [#3719](https://www.github.com/tauri-apps/tauri/pull/3719) ([#3721](https://www.github.com/tauri-apps/tauri/pull/3721)) on 2022-03-18
13
+ - Fixes resources bundling on Windows when the path is on the root of the Tauri folder.
14
+ - [4c84559e](https://www.github.com/tauri-apps/tauri/commit/4c84559e1f3019e7aa2666b10a1a0bd97bb09d24) fix(cli): root resource bundling on Windows, closes [#3539](https://www.github.com/tauri-apps/tauri/pull/3539) ([#3685](https://www.github.com/tauri-apps/tauri/pull/3685)) on 2022-03-13
15
+
3
16
  ## \[1.0.0-rc.6]
4
17
 
5
18
  - Added `tsp` config option under `tauri > bundle > windows`, which enables Time-Stamp Protocol (RFC 3161) for the timestamping
package/Cargo.toml CHANGED
@@ -8,8 +8,8 @@ crate-type = ["cdylib"]
8
8
 
9
9
  [dependencies]
10
10
  # Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
11
- napi = { version = "2.1", default-features = false, features = ["napi4"] }
12
- napi-derive = "2.1"
11
+ napi = { version = "2.2", default-features = false, features = ["napi4"] }
12
+ napi-derive = "2.2"
13
13
  tauri-cli = { path = ".." }
14
14
 
15
15
  [build-dependencies]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.7",
3
+ "version": "1.0.0-rc.8",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -37,12 +37,12 @@
37
37
  }
38
38
  },
39
39
  "devDependencies": {
40
- "@napi-rs/cli": "2.4.4",
40
+ "@napi-rs/cli": "2.5.0",
41
41
  "cross-spawn": "7.0.3",
42
42
  "fs-extra": "10.0.1",
43
43
  "jest": "27.5.1",
44
44
  "jest-transform-toml": "1.0.0",
45
- "prettier": "2.5.1"
45
+ "prettier": "2.6.0"
46
46
  },
47
47
  "engines": {
48
48
  "node": ">= 10"
@@ -62,14 +62,14 @@
62
62
  "format:check": "prettier --check ./package.json ./tauri.js"
63
63
  },
64
64
  "optionalDependencies": {
65
- "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.7",
66
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.7",
67
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.7",
68
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.7",
69
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.7",
70
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.7",
71
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.7",
72
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.7",
73
- "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.7"
65
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.8",
66
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.8",
67
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.8",
68
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.8",
69
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.8",
70
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.8",
71
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.8",
72
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.8",
73
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.8"
74
74
  }
75
75
  }