diff --git a/CHANGELOG.md b/CHANGELOG.md index fb94627..38b22a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [2.0.2] - 2024-07-25 + ### Compatibility - Updated MSRV to 1.74 @@ -65,7 +67,8 @@ MSRV is now 1.61.0 to integrate with `Termination` - `Exit`s members should not be public -[Unreleased]: https://github.com/rust-cli/proc-exit/compare/v2.0.1...HEAD +[Unreleased]: https://github.com/rust-cli/proc-exit/compare/v2.0.2...HEAD +[2.0.2]: https://github.com/rust-cli/proc-exit/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/rust-cli/proc-exit/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/rust-cli/proc-exit/compare/v1.0.3...v2.0.0 [1.0.3]: https://github.com/rust-cli/proc-exit/compare/v1.0.2...v1.0.3 diff --git a/Cargo.lock b/Cargo.lock index 8da8f58..2aa9ddf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "proc-exit" -version = "2.0.1" +version = "2.0.2" diff --git a/Cargo.toml b/Cargo.toml index 4c68234..13749c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ zero_sized_map_values = "warn" [package] name = "proc-exit" -version = "2.0.1" +version = "2.0.2" description = "Exit codes for process termination" authors = ["Ed Page "] repository = "https://github.com/rust-cli/proc-exit"