Skip to content

Commit b682dcf

Browse files
FabianLarsgithub-actions[bot]
authored andcommitted
apply version updates
1 parent 85baacd commit b682dcf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+208
-179
lines changed

.changes/bundler-appimage-arch-env.md

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

.changes/change-pr-13288.md

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

.changes/change-pr-13401.md

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

.changes/cli-dev-slow-start.md

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

.changes/feat-webview-auto-resize.md

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

.changes/feature-gate-html-manipulation.md

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

.changes/fix-custom-signer-uninstaller.md

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

.changes/fix-frontenddir-target-error.md

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

.changes/fix-ios-register-listener.md

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

.changes/fix-main-binary-name-with-dot.md

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

.changes/fix-path-join-error.md

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

.changes/fix-prevent-overflow-monitor-check.md

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

.changes/fix-tray-get-by-id.md

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

.changes/fix-webview-proxy-url.md

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

.changes/monitor-workarea-js.md

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

.changes/monitor-workarea-rust.md

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

.changes/physical-logical-rect.md

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

.changes/run-set-theme-on-main-thread.md

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

.changes/service-worker-allowed-http-header.md

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

.changes/transform-callback.md

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

.changes/unlisten-race-condition.md

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

.changes/webview-runtime-check.md

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

Cargo.lock

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

crates/tauri-build/CHANGELOG.md

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

3+
## \[2.2.1]
4+
5+
### Dependencies
6+
7+
- Upgraded to `[email protected]`
8+
- Upgraded to `[email protected]`
9+
310
## \[2.2.0]
411

512
### Dependencies

crates/tauri-build/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-build"
3-
version = "2.2.0"
3+
version = "2.2.1"
44
description = "build time code to pair with https://crates.io/crates/tauri"
55
exclude = ["CHANGELOG.md", "/target"]
66
readme = "README.md"
@@ -28,8 +28,8 @@ rustdoc-args = ["--cfg", "docsrs"]
2828
[dependencies]
2929
anyhow = "1"
3030
quote = { version = "1", optional = true }
31-
tauri-codegen = { version = "2.2.0", path = "../tauri-codegen", optional = true }
32-
tauri-utils = { version = "2.4.0", path = "../tauri-utils", features = [
31+
tauri-codegen = { version = "2.2.1", path = "../tauri-codegen", optional = true }
32+
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
3333
"build",
3434
"resources",
3535
] }

crates/tauri-bundler/CHANGELOG.md

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

3+
## \[2.4.1]
4+
5+
### Bug Fixes
6+
7+
- [`479cee3d3`](https://www.github.com/tauri-apps/tauri/commit/479cee3d3680f9020005bdfb380d3a9482e286a1) ([#13260](https://www.github.com/tauri-apps/tauri/pull/13260) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) The bundler now sets the `ARCH` env var to the current build target to prevent potential issues with `appimagetool`'s auto-detection.
8+
- [`e045fe32c`](https://www.github.com/tauri-apps/tauri/commit/e045fe32c9b0bed954916dc42528e28ee19f75b8) ([#13334](https://www.github.com/tauri-apps/tauri/pull/13334) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fix custom Windows sign command failing to sign app uninstaller if it references relative paths.
9+
- [`b52da29d5`](https://www.github.com/tauri-apps/tauri/commit/b52da29d5dbdb675ddba438a335e6a59f620e536) ([#13429](https://www.github.com/tauri-apps/tauri/pull/13429) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `mainBinaryName` doesn't work when there's `.` in it
10+
11+
### Dependencies
12+
13+
- Upgraded to `[email protected]`
14+
315
## \[2.4.0]
416

517
### New Features

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.4.0"
3+
version = "2.4.1"
44
authors = [
55
"George Burton <[email protected]>",
66
"Tauri Programme within The Commons Conservancy",
@@ -15,7 +15,7 @@ rust-version = "1.77.2"
1515
exclude = ["CHANGELOG.md", "/target", "rustfmt.toml"]
1616

1717
[dependencies]
18-
tauri-utils = { version = "2.4.0", path = "../tauri-utils", features = [
18+
tauri-utils = { version = "2.5.0", path = "../tauri-utils", features = [
1919
"resources",
2020
] }
2121
image = "0.25"

0 commit comments

Comments
 (0)