From 5f884ac7db2fc24c61defcbf8b7535221d1a4bca Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sat, 1 Jun 2024 06:57:34 -0700 Subject: [PATCH] v0.14.0 Signed-off-by: John Nunley --- CHANGELOG.md | 15 +++++++++++++-- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02a804ad..b2c95233 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,21 @@ ## Unreleased +## 0.14.0 -- 2024-06-01 + #### Breaking Changes - Remove `nix` from the public API. This replaces `Signal` with a home-grown - `Signal` enum and `siginfo` with a structure that provides most of its fields. + `Signal` enum and `siginfo` with a structure that provides most of its fields. (#182) +- Replace `thiserror` usage with manual implementations. This may cause the API to be slightly different in some cases, but should mostly be identical. (#186) + +#### Additions + +- Improve the MSRV policy. Now, changes to the MSRV are no longer considered breaking changes, improving stability. (#189) + +#### Bugfixes + +- Bump `nix` to v0.29. (#188) ## 0.13.0 -- 2024-02-25 @@ -88,7 +99,7 @@ - **Breaking:** `Timer::current_deadline` returns `Option`, so that it can return `None` in the event of an overflow. - **Breaking:** Use `AsFd` instead of `AsRawFd`/`RawFd`. - + ## 0.10.2 -- 2022-11-08 #### Bugfixes diff --git a/Cargo.toml b/Cargo.toml index 25e7bf79..adec26c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calloop" -version = "0.13.0" +version = "0.14.0" authors = ["Elinor Berger "] documentation = "https://docs.rs/calloop/" repository = "https://github.com/Smithay/calloop"