Skip to content

Commit 0cfcd46

Browse files
Apply Version Updates From Current Changes (v1) (#12625)
Co-authored-by: FabianLars <FabianLars@users.noreply.github.com> Co-authored-by: Fabian-Lars <github@fabianlars.de>
1 parent b19a78c commit 0cfcd46

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.changes/fix-macos-privileged-update.md

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

core/tauri/CHANGELOG.md

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

3+
## \[1.8.3]
4+
5+
### Bug Fixes
6+
7+
- [`f72d0e18e`](https://github.com/tauri-apps/tauri/commit/f72d0e18eb155ce03542644f7be0b077df654048) ([#10427](https://github.com/tauri-apps/tauri/pull/10427) by [@jLynx](https://github.com/tauri-apps/tauri/../../jLynx)) Fix update installation on macOS when using an user without admin privileges.
8+
39
## \[1.8.2]
410

511
### Dependencies

core/tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "Apache-2.0 OR MIT"
1010
name = "tauri"
1111
readme = "README.md"
1212
repository = "https://github.com/tauri-apps/tauri"
13-
version = "1.8.2"
13+
version = "1.8.3"
1414

1515
[package.metadata.docs.rs]
1616
no-default-features = true

tooling/bundler/src/bundle/path_utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ where
163163
));
164164
}
165165

166-
let dir_name = if let Some(val) = from.components().last() {
166+
let dir_name = if let Some(val) = from.components().next_back() {
167167
val.as_os_str()
168168
} else {
169169
return Err(crate::Error::PathUtilError(

tooling/cli/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"version": "1.6.5",
44
"node": ">= 10.0.0"
55
},
6-
"tauri": "1.8.2",
6+
"tauri": "1.8.3",
77
"tauri-build": "1.5.6"
88
}

0 commit comments

Comments
 (0)