Skip to content

Commit 70106a5

Browse files
committed
release 0.2.3
1 parent 13527c1 commit 70106a5

File tree

7 files changed

+21
-10
lines changed

7 files changed

+21
-10
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/memorysafety/sudo-rs/compare/v0.2.2...v0.2.3
114125
[0.2.2]: https://github.com/memorysafety/sudo-rs/compare/v0.2.1...v0.2.2
115126
[0.2.1]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0...v0.2.1
116127
[0.2.0]: https://github.com/memorysafety/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/memorysafety/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

util/build-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
DATE="2023-09-21"
3+
DATE="2024-07-11"
44
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
55
PROJECT_DIR=$(dirname "$SCRIPT_DIR")
66
SUDO_RS_VERSION="$(cargo metadata --format-version 1 --manifest-path "$PROJECT_DIR/Cargo.toml" | jq '.packages[] | select(.name=="sudo-rs") | .version' -r)"

0 commit comments

Comments
 (0)