@tauri-apps/cli 1.5.4 → 1.5.5

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 +14 -0
  2. package/Cargo.toml +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## \[1.5.5]
4
+
5
+ ### Enhancements
6
+
7
+ - [`9bead42d`](https://www.github.com/tauri-apps/tauri/commit/9bead42dbca0fb6dd7ea0b6bfb2f2308a5c5f992)([#8059](https://www.github.com/tauri-apps/tauri/pull/8059)) Allow rotating the updater private key.
8
+
9
+ ### Bug Fixes
10
+
11
+ - [`be8e5aa3`](https://www.github.com/tauri-apps/tauri/commit/be8e5aa3071d9bc5d0bd24647e8168f312d11c8d)([#8042](https://www.github.com/tauri-apps/tauri/pull/8042)) Fixes duplicated newlines on command outputs.
12
+
13
+ ### Dependencies
14
+
15
+ - Upgraded to `tauri-cli@1.5.5`
16
+
3
17
  ## \[1.5.4]
4
18
 
5
19
  ### Dependencies
package/Cargo.toml CHANGED
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
11
11
  napi = { version = "2.13", default-features = false, features = ["napi4"] }
12
12
  napi-derive = "2.13"
13
13
  tauri-cli = { path = "..", default-features = false }
14
- log = "0.4.19"
14
+ log = "0.4.20"
15
15
 
16
16
  [build-dependencies]
17
17
  napi-build = "2.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tauri-apps/cli",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Command line interface for building Tauri apps",
5
5
  "funding": {
6
6
  "type": "opencollective",
@@ -68,15 +68,15 @@
68
68
  "format:check": "prettier --check ./package.json ./tauri.js"
69
69
  },
70
70
  "optionalDependencies": {
71
- "@tauri-apps/cli-win32-x64-msvc": "1.5.4",
72
- "@tauri-apps/cli-darwin-x64": "1.5.4",
73
- "@tauri-apps/cli-linux-x64-gnu": "1.5.4",
74
- "@tauri-apps/cli-darwin-arm64": "1.5.4",
75
- "@tauri-apps/cli-linux-arm64-gnu": "1.5.4",
76
- "@tauri-apps/cli-linux-arm64-musl": "1.5.4",
77
- "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.4",
78
- "@tauri-apps/cli-linux-x64-musl": "1.5.4",
79
- "@tauri-apps/cli-win32-ia32-msvc": "1.5.4",
80
- "@tauri-apps/cli-win32-arm64-msvc": "1.5.4"
71
+ "@tauri-apps/cli-win32-x64-msvc": "1.5.5",
72
+ "@tauri-apps/cli-darwin-x64": "1.5.5",
73
+ "@tauri-apps/cli-linux-x64-gnu": "1.5.5",
74
+ "@tauri-apps/cli-darwin-arm64": "1.5.5",
75
+ "@tauri-apps/cli-linux-arm64-gnu": "1.5.5",
76
+ "@tauri-apps/cli-linux-arm64-musl": "1.5.5",
77
+ "@tauri-apps/cli-linux-arm-gnueabihf": "1.5.5",
78
+ "@tauri-apps/cli-linux-x64-musl": "1.5.5",
79
+ "@tauri-apps/cli-win32-ia32-msvc": "1.5.5",
80
+ "@tauri-apps/cli-win32-arm64-msvc": "1.5.5"
81
81
  }
82
82
  }