From d66f3aa9cf740d9fa6daa84230e16e23c2ec5838 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Thu, 5 Sep 2024 19:34:59 -0700 Subject: [PATCH] v0.14.1 Signed-off-by: John Nunley --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2c95233..5a15d4e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ## Unreleased +## 0.14.1 -- 2024-09-05 + +#### Additions + +- Use the `tracing` crate for logging instead of the `log` crate. (#195) +- Make the `Generic` type `UnwindSafe`, even if its error is not. (#204) + +#### Bugfixes + +- Optimizer timers in such a way that cancelling and restarting a timer doesn't + allocate on the heap. (#184) +- Make it so the number of channel elements are bounded per iteration of the + event loop. (#200) + ## 0.14.0 -- 2024-06-01 #### Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 97803b35..c44095ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "calloop" -version = "0.14.0" +version = "0.14.1" authors = ["Elinor Berger "] documentation = "https://docs.rs/calloop/" repository = "https://github.com/Smithay/calloop" @@ -52,4 +52,4 @@ harness = false [[bench]] name = "timer" -harness = false \ No newline at end of file +harness = false