diff --git a/CHANGELOG.md b/CHANGELOG.md index 162bde0..5d48d16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Change Log +## 0.3.7 - 2024-12-01 +* bump dependencies +* allow for customizing tick/redraw intervals +* fix bug around footer not appearing after disappearing once +* re-export indicatif `ProgressStyle` for ease of use +* provide helper macros for printing to stdout/stderr without interfering with progress bars +* disable use of `set_move_cursor` due to regression in indicatif 0.17.9 (https://github.com/console-rs/indicatif/issues/669), this may introduce new flickering unfortunately ## 0.3.6 - 2023-12-11 * update dev dependencies (#8) diff --git a/Cargo.toml b/Cargo.toml index e040077..3d10889 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-indicatif" -version = "0.3.6" +version = "0.3.7" edition = "2021" description = "Tracing layer that automatically creates and manages progress bars for active spans." license = "MIT"