Skip to content

Commit 20c7f8f

Browse files
apply version updates
1 parent 91becd9 commit 20c7f8f

File tree

15 files changed

+49
-36
lines changed

15 files changed

+49
-36
lines changed

.changes/bump-version-num-bigint-dig.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/no-sign-skip-nsis-uninstaller.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/nsis-plugin-sign-path.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/support-template-extensions.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/version-req-error.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tauri-bundler/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## \[2.7.5]
4+
5+
### Enhancements
6+
7+
- [`4176f93ae`](https://www.github.com/tauri-apps/tauri/commit/4176f93ae43ef66714c4934feb3df19df3a3e28a) ([#14570](https://www.github.com/tauri-apps/tauri/pull/14570) by [@chfaft](https://www.github.com/tauri-apps/tauri/../../chfaft)) Consider extensions that are defined in the wxs template.
8+
9+
### Bug Fixes
10+
11+
- [`018b4db22`](https://www.github.com/tauri-apps/tauri/commit/018b4db22e167fa67b37b0933e192a0f3556d3e5) ([#14625](https://www.github.com/tauri-apps/tauri/pull/14625) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Skip signing for NSIS uninstaller when using `--no-sign` flag
12+
- [`91becd9e4`](https://www.github.com/tauri-apps/tauri/commit/91becd9e4fa2db089ddc6b21dadc06133e939e08) ([#14627](https://www.github.com/tauri-apps/tauri/pull/14627) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix NSIS plugins not being signed due to wrong path handlings
13+
14+
### Dependencies
15+
16+
- Upgraded to `[email protected]`
17+
318
## \[2.7.4]
419

520
### Bug Fixes

crates/tauri-bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-bundler"
3-
version = "2.7.4"
3+
version = "2.7.5"
44
authors = [
55
"George Burton <[email protected]>",
66
"Tauri Programme within The Commons Conservancy",
@@ -59,7 +59,7 @@ features = ["Win32_System_SystemInformation", "Win32_System_Diagnostics_Debug"]
5959
[target."cfg(target_os = \"macos\")".dependencies]
6060
icns = { package = "tauri-icns", version = "0.1" }
6161
time = { version = "0.3", features = ["formatting"] }
62-
tauri-macos-sign = { version = "2.3.1", path = "../tauri-macos-sign" }
62+
tauri-macos-sign = { version = "2.3.2", path = "../tauri-macos-sign" }
6363

6464
[target."cfg(target_os = \"linux\")".dependencies]
6565
heck = "0.5"

crates/tauri-cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## \[2.9.6]
4+
5+
### What's Changed
6+
7+
- [`7b1b3514d`](https://www.github.com/tauri-apps/tauri/commit/7b1b3514df771e6e9859b9f54fa4df332433948e) ([#14621](https://www.github.com/tauri-apps/tauri/pull/14621) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Errors like `Error Failed to parse version 2 for for NPM package tauri` when there was no `package-lock.json` file present yet or when using ones like `link:./tauri` are now only logged in `--verbose` mode.
8+
9+
### Dependencies
10+
11+
- Upgraded to `[email protected]`
12+
- Upgraded to `[email protected]`
13+
314
## \[2.9.5]
415

516
### Bug Fixes

crates/tauri-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-cli"
3-
version = "2.9.5"
3+
version = "2.9.6"
44
authors = ["Tauri Programme within The Commons Conservancy"]
55
edition = "2021"
66
rust-version = "1.77.2"
@@ -47,7 +47,7 @@ sublime_fuzzy = "0.7"
4747
clap_complete = "4"
4848
clap = { version = "4", features = ["derive", "env"] }
4949
thiserror = "2"
50-
tauri-bundler = { version = "2.7.4", default-features = false, path = "../tauri-bundler" }
50+
tauri-bundler = { version = "2.7.5", default-features = false, path = "../tauri-bundler" }
5151
colored = "2"
5252
serde = { version = "1", features = ["derive"] }
5353
serde_json = { version = "1", features = ["preserve_order"] }
@@ -133,7 +133,7 @@ libc = "0.2"
133133

134134
[target."cfg(target_os = \"macos\")".dependencies]
135135
plist = "1"
136-
tauri-macos-sign = { version = "2.3.1", path = "../tauri-macos-sign" }
136+
tauri-macos-sign = { version = "2.3.2", path = "../tauri-macos-sign" }
137137
object = { version = "0.36", default-features = false, features = [
138138
"macho",
139139
"read_core",

0 commit comments

Comments
 (0)