@tauri-apps/cli 1.0.3 → 1.0.4

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 +7 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.4]
4
+
5
+ - Do not capture and force colors of `cargo build` output.
6
+ - [c635a0da](https://www.github.com/tauri-apps/tauri/commit/c635a0dad437860d54109adffaf245b7c21bc684) refactor(cli): do not capture and force colors of cargo build output ([#4627](https://www.github.com/tauri-apps/tauri/pull/4627)) on 2022-07-12
7
+ - Reduce the amount of allocations when converting cases.
8
+ - [bc370e32](https://www.github.com/tauri-apps/tauri/commit/bc370e326810446e15b1f50fb962b980114ba16b) feat: reduce the amount of `heck`-related allocations ([#4634](https://www.github.com/tauri-apps/tauri/pull/4634)) on 2022-07-11
9
+
3
10
  ## \[1.0.3]
4
11
 
5
12
  - Changed the app template to not set the default app menu as it is now set automatically on macOS which is the platform that needs a menu to function properly.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -64,14 +64,14 @@
64
64
  "format:check": "prettier --check ./package.json ./tauri.js"
65
65
  },
66
66
  "optionalDependencies": {
67
- "@tauri-apps/cli-win32-x64-msvc": "1.0.3",
68
- "@tauri-apps/cli-darwin-x64": "1.0.3",
69
- "@tauri-apps/cli-linux-x64-gnu": "1.0.3",
70
- "@tauri-apps/cli-darwin-arm64": "1.0.3",
71
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.3",
72
- "@tauri-apps/cli-linux-arm64-musl": "1.0.3",
73
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.3",
74
- "@tauri-apps/cli-linux-x64-musl": "1.0.3",
75
- "@tauri-apps/cli-win32-ia32-msvc": "1.0.3"
67
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.4",
68
+ "@tauri-apps/cli-darwin-x64": "1.0.4",
69
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.4",
70
+ "@tauri-apps/cli-darwin-arm64": "1.0.4",
71
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.4",
72
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.4",
73
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.4",
74
+ "@tauri-apps/cli-linux-x64-musl": "1.0.4",
75
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.4"
76
76
  }
77
77
  }