File tree Expand file tree Collapse file tree 4 files changed +25
-9
lines changed Expand file tree Collapse file tree 4 files changed +25
-9
lines changed Original file line number Diff line number Diff line change 34
34
- uses : actions/checkout@master
35
35
- name : Install Rust (rustup)
36
36
run : |
37
- rustup update ${{ matrix.rust }}
37
+ rustup update ${{ matrix.rust }} --no-self-update
38
38
rustup default ${{ matrix.rust }}
39
39
- run : cargo test --verbose
40
40
- run : cargo test --verbose --features serde
52
52
- uses : actions/checkout@master
53
53
- name : Install Rust
54
54
run : |
55
- rustup update stable
55
+ rustup update stable --no-self-update
56
56
rustup default stable
57
57
rustup component add rustfmt
58
58
- run : cargo fmt -- --check
64
64
- uses : actions/checkout@master
65
65
- name : Install Rust
66
66
run : |
67
- rustup update 1.31.0
67
+ rustup update 1.31.0 --no-self-update
68
68
rustup default 1.31.0
69
69
- run : cargo build --verbose
70
70
- run : cargo build --verbose --features serde
77
77
- uses : actions/checkout@master
78
78
- name : Install Rust
79
79
run : |
80
- rustup update stable
80
+ rustup update stable --no-self-update
81
81
rustup default stable
82
82
- run : rustup target add thumbv6m-none-eabi
83
83
- run : cargo build --verbose --target=thumbv6m-none-eabi
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
- ## [ 0.4.10] - 2019-12-16
5
+ ## [ 0.4.11] - 2020-07-09
6
+
7
+ ### New
8
+
9
+ * Support coercing structured values into concrete types.
10
+ * Reference the ` win_dbg_logger ` in the readme.
11
+
12
+ ### Fixed
13
+
14
+ * Updates a few deprecated items used internally.
15
+ * Fixed issues in docs and expands sections.
16
+ * Show the correct build badge in the readme.
17
+ * Fix up a possible inference breakage with structured value errors.
18
+ * Respect formatting flags in structured value formatting.
19
+
20
+ ## [ 0.4.10] - 2019-12-16 (yanked)
6
21
7
22
### Fixed
8
23
9
24
* Fixed the ` log! ` macros so they work in expression context (this regressed in ` 0.4.9 ` , which has been yanked).
10
25
11
- ## [ 0.4.9] - 2019-12-12
26
+ ## [ 0.4.9] - 2019-12-12 (yanked)
12
27
13
28
### Minimum Supported Rust Version
14
29
@@ -155,7 +170,8 @@ version using log 0.4.x to avoid losing module and file information.
155
170
156
171
Look at the [ release tags] for information about older releases.
157
172
158
- [ Unreleased ] : https://github.com/rust-lang-nursery/log/compare/0.4.10...HEAD
173
+ [ Unreleased ] : https://github.com/rust-lang-nursery/log/compare/0.4.11...HEAD
174
+ [ 0.4.11 ] : https://github.com/rust-lang-nursery/log/compare/0.4.10...0.4.11
159
175
[ 0.4.10 ] : https://github.com/rust-lang-nursery/log/compare/0.4.9...0.4.10
160
176
[ 0.4.9 ] : https://github.com/rust-lang-nursery/log/compare/0.4.8...0.4.9
161
177
[ 0.4.8 ] : https://github.com/rust-lang-nursery/log/compare/0.4.7...0.4.8
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " log"
4
- version = " 0.4.10 " # remember to update html_root_url
4
+ version = " 0.4.11 " # remember to update html_root_url
5
5
authors = [" The Rust Project Developers" ]
6
6
license = " MIT OR Apache-2.0"
7
7
readme = " README.md"
Original file line number Diff line number Diff line change 266
266
#![ doc(
267
267
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png" ,
268
268
html_favicon_url = "https://www.rust-lang.org/favicon.ico" ,
269
- html_root_url = "https://docs.rs/log/0.4.10 "
269
+ html_root_url = "https://docs.rs/log/0.4.11 "
270
270
) ]
271
271
#![ warn( missing_docs) ]
272
272
#![ deny( missing_debug_implementations) ]
You can’t perform that action at this time.
0 commit comments