diff --git a/CHANGELOG.md b/CHANGELOG.md index 4071f6a..d82bb0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ All user visible changes to this project will be documented in this file. This p -## [0.13.0] · 2023-02-?? +## [0.13.0] · 2023-02-14 [0.13.0]: /../../tree/v0.13.0 [Diff](/../../compare/v0.12.0...v0.13.0) @@ -14,6 +14,7 @@ All user visible changes to this project will be documented in this file. This p ### BC Breaks - Added `buf_id` argument to `PlatformLogWriter::new()` method allowing to specify concrete Android logging system buffer. ([#50], [#64]) +- Removed deprecated `Config::with_min_level()` method accepting `log::Level`. ([#65]) ### Added @@ -21,6 +22,7 @@ All user visible changes to this project will be documented in this file. This p [#50]: /../../pull/50 [#64]: /../../pull/64 +[#65]: /../../pull/65 diff --git a/Cargo.toml b/Cargo.toml index 2f813e0..d534c37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "android_logger" -version = "0.12.0" +version = "0.13.0" authors = ["The android_logger Developers"] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index ecf67b3..5c285f3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -271,13 +271,6 @@ pub struct Config { } impl Config { - // TODO: Remove on 0.13 version release. - /// **DEPRECATED**, use [`Config::with_max_level()`] instead. - #[deprecated(note = "use `.with_max_level()` instead")] - pub fn with_min_level(self, level: Level) -> Self { - self.with_max_level(level.to_level_filter()) - } - /// Changes the maximum log level. /// /// Note, that `Trace` is the maximum level, because it provides the