Skip to content

Commit f317145

Browse files
committed
Release 0.2.2
1 parent c136211 commit f317145

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-7
lines changed

CHANGELOG.md

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

3+
## [0.2.2] - 2024-02-02
4+
5+
### Changed
6+
- Several changes to the code to improve type safety
7+
- Improved error message when a PTY cannot be opened
8+
- Improved portability of the PAM bindings
9+
- su: improved parsing of su command line options
10+
- Add path information to parse errors originating from included files
11+
12+
### Fixed
13+
- Fixed a panic with large messages written to the syslog
14+
- sudo: respect `--login` regardless of the presence of `--chdir`
15+
316
## [0.2.1] - 2023-09-21
417

518
### Changed
@@ -98,6 +111,7 @@
98111
- Use canonicalized paths for the executed binaries
99112
- Simplified CLI help to only display supported actions
100113

114+
[0.2.2]: https://github.com/memorysafety/sudo-rs/compare/v0.2.1...v0.2.2
101115
[0.2.1]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0...v0.2.1
102116
[0.2.0]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0-dev.20230711...v0.2.0
103117
[0.2.0-dev.20230711]: https://github.com/memorysafety/sudo-rs/compare/v0.2.0-dev.20230703...v0.2.0-dev.20230711

Cargo.lock

+3-3
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.1"
4+
version = "0.2.2"
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.1 | sudo-rs
2+
title: SU(1) sudo-rs 0.2.2 | 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.1 | sudo-rs
2+
title: SUDO(8) sudo-rs 0.2.2 | 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.1 | sudo-rs
2+
title: VISUDO(8) sudo-rs 0.2.2 | sudo-rs
33
--- -->
44

55
# NAME

0 commit comments

Comments
 (0)