Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "calloop"
version = "0.14.0"
version = "0.14.1"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
documentation = "https://docs.rs/calloop/"
repository = "https://github.com/Smithay/calloop"
Expand Down Expand Up @@ -52,4 +52,4 @@ harness = false

[[bench]]
name = "timer"
harness = false
harness = false
Loading