File tree 3 files changed +4
-9
lines changed 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -6,21 +6,23 @@ All user visible changes to this project will be documented in this file. This p
6
6
7
7
8
8
9
- ## [ 0.13.0] · 2023-02-??
9
+ ## [ 0.13.0] · 2023-02-14
10
10
[ 0.13.0 ] : /../../tree/v0.13.0
11
11
12
12
[ Diff] ( /../../compare/v0.12.0...v0.13.0 )
13
13
14
14
### BC Breaks
15
15
16
16
- Added ` buf_id ` argument to ` PlatformLogWriter::new() ` method allowing to specify concrete Android logging system buffer. ([ #50 ] , [ #64 ] )
17
+ - Removed deprecated ` Config::with_min_level() ` method accepting ` log::Level ` . ([ #65 ] )
17
18
18
19
### Added
19
20
20
21
- ` Config::with_log_buffer() ` method to specify concrete Android logging system buffer. ([ #50 ] , [ #64 ] )
21
22
22
23
[ #50 ] : /../../pull/50
23
24
[ #64 ] : /../../pull/64
25
+ [ #65 ] : /../../pull/65
24
26
25
27
26
28
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " android_logger"
3
- version = " 0.12 .0"
3
+ version = " 0.13 .0"
4
4
authors = [" The android_logger Developers" ]
5
5
license = " MIT OR Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -271,13 +271,6 @@ pub struct Config {
271
271
}
272
272
273
273
impl Config {
274
- // TODO: Remove on 0.13 version release.
275
- /// **DEPRECATED**, use [`Config::with_max_level()`] instead.
276
- #[ deprecated( note = "use `.with_max_level()` instead" ) ]
277
- pub fn with_min_level ( self , level : Level ) -> Self {
278
- self . with_max_level ( level. to_level_filter ( ) )
279
- }
280
-
281
274
/// Changes the maximum log level.
282
275
///
283
276
/// Note, that `Trace` is the maximum level, because it provides the
You can’t perform that action at this time.
0 commit comments