From 07e418fceb0bf3bbedcfba83d9424177035a5a4c Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Sun, 22 Sep 2024 06:59:36 -0700 Subject: [PATCH] Updated changelog These changes were accidentally committed in another commit yesterday before I documented them. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8831a8c..f4d4eaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The new `MakeWindow` trait adds some new functionality: `open_centered`/`run_centered`/`run_centered_in`. These functions present a window centered on the screen where the window initially is shown. +- `IntoAnimate::on_complete` now takes an `FnOnce` instead of an `FnMut`. Since + this widens the types of functions this accepts, this is not a breaking + change. This matches the documented behavior. +- `tracing_subscriber` initialization has been moved to `PendingApp::default()` + from `Window::run`. This ensures logging is always initialized for all Cushy + apps. ### Fixed