diff --git a/CHANGELOG.md b/CHANGELOG.md index bf1fcc6..045d709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## 0.3.5 - 2023-08-21 +* add method to suspend progress bars managed by IndicatifLayer, e.g. to show dialogue confirmations (closes #4) + ## 0.3.4 - 2023-04-28 * add methods to fetch the `IndicatifWriter` globally if there is a default tracing subscriber and if the `IndicatifLayer` has been added diff --git a/Cargo.toml b/Cargo.toml index cb044cf..9500bcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tracing-indicatif" -version = "0.3.4" +version = "0.3.5" edition = "2021" description = "Tracing layer that automatically creates and manages progress bars for active spans." license = "MIT" @@ -11,10 +11,10 @@ documentation = "https://docs.rs/tracing-indicatif" exclude = ["*.gif"] [dependencies] -indicatif = { version = "0.17.3", features = ["in_memory"] } +indicatif = { version = "0.17.6", features = ["in_memory"] } tracing = "0.1.37" tracing-core = "0.1.30" -tracing-subscriber = { version = "0.3.16" } +tracing-subscriber = { version = "0.3.17" } [dev-dependencies] futures = "0.3.26"