Skip to content

Commit 0d1cdd1

Browse files
committed
release 0.2.3
1 parent 6f7f989 commit 0d1cdd1

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.2.3] - 2024-07-11
4+
5+
### Changed
6+
- Portability: sudo-rs now is compatible with s390x-unknown-linux-gnu
7+
- Removed unneeded code & fix hints given by newer Rust version
8+
9+
### Fixed
10+
- `visudo` would not properly truncate a `sudoers` file
11+
- high CPU load when child process did not terminate after closure of a terminal
12+
313
## [0.2.2] - 2024-02-02
414

515
### Changed
@@ -111,6 +121,7 @@
111121
- Use canonicalized paths for the executed binaries
112122
- Simplified CLI help to only display supported actions
113123

124+
[0.2.3]: https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.2...v0.2.3
114125
[0.2.2]: https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.1...v0.2.2
115126
[0.2.1]: https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.0...v0.2.1
116127
[0.2.0]: https://github.com/trifectatechfoundation/sudo-rs/compare/v0.2.0-dev.20230711...v0.2.0

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "sudo-rs"
33
description = "A memory safe implementation of sudo and su."
4-
version = "0.2.2"
4+
version = "0.2.3"
55
license = "Apache-2.0 OR MIT"
66
edition = "2021"
77
repository = "https://github.com/trifectatechfoundation/sudo-rs"

docs/man/su.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: SU(1) sudo-rs 0.2.2 | sudo-rs
2+
title: SU(1) sudo-rs 0.2.3 | sudo-rs
33
--- -->
44

55
# NAME

docs/man/sudo.8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: SUDO(8) sudo-rs 0.2.2 | sudo-rs
2+
title: SUDO(8) sudo-rs 0.2.3 | sudo-rs
33
--- -->
44

55
# NAME

docs/man/visudo.8.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: VISUDO(8) sudo-rs 0.2.2 | sudo-rs
2+
title: VISUDO(8) sudo-rs 0.2.3 | sudo-rs
33
--- -->
44

55
# NAME

0 commit comments

Comments
 (0)