@tauri-apps/cli 1.0.0-rc.15 → 1.0.0-rc.16

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 +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.0.0-rc.16]
4
+
5
+ - Use the default window menu in the app template.
6
+ - [4c4acc30](https://www.github.com/tauri-apps/tauri/commit/4c4acc3094218dd9cee0f1ad61810c979e0b41fa) feat: implement `Default` for `Menu`, closes [#2398](https://www.github.com/tauri-apps/tauri/pull/2398) ([#4291](https://www.github.com/tauri-apps/tauri/pull/4291)) on 2022-06-15
7
+
3
8
  ## \[1.0.0-rc.15]
4
9
 
5
10
  - Removed the tray icon from the Debian and AppImage bundles since they are embedded in the binary now.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.0.0-rc.15",
3
+ "version": "1.0.0-rc.16",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -43,7 +43,7 @@
43
43
  "fs-extra": "10.1.0",
44
44
  "jest": "28.1.1",
45
45
  "jest-transform-toml": "1.0.0",
46
- "prettier": "2.6.2"
46
+ "prettier": "2.7.0"
47
47
  },
48
48
  "engines": {
49
49
  "node": ">= 10"
@@ -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.0-rc.15",
68
- "@tauri-apps/cli-darwin-x64": "1.0.0-rc.15",
69
- "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.15",
70
- "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.15",
71
- "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.15",
72
- "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.15",
73
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.15",
74
- "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.15",
75
- "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.15"
67
+ "@tauri-apps/cli-win32-x64-msvc": "1.0.0-rc.16",
68
+ "@tauri-apps/cli-darwin-x64": "1.0.0-rc.16",
69
+ "@tauri-apps/cli-linux-x64-gnu": "1.0.0-rc.16",
70
+ "@tauri-apps/cli-darwin-arm64": "1.0.0-rc.16",
71
+ "@tauri-apps/cli-linux-arm64-gnu": "1.0.0-rc.16",
72
+ "@tauri-apps/cli-linux-arm64-musl": "1.0.0-rc.16",
73
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.0.0-rc.16",
74
+ "@tauri-apps/cli-linux-x64-musl": "1.0.0-rc.16",
75
+ "@tauri-apps/cli-win32-ia32-msvc": "1.0.0-rc.16"
76
76
  }
77
77
  }