Skip to content

Commit aa4c037

Browse files
authored
Merge pull request #404 from KodrAus/cargo/0.4.11
Prepare for 0.4.11 release
2 parents 813b6ce + 21715ba commit aa4c037

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@master
3535
- name: Install Rust (rustup)
3636
run: |
37-
rustup update ${{ matrix.rust }}
37+
rustup update ${{ matrix.rust }} --no-self-update
3838
rustup default ${{ matrix.rust }}
3939
- run: cargo test --verbose
4040
- run: cargo test --verbose --features serde
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@master
5353
- name: Install Rust
5454
run: |
55-
rustup update stable
55+
rustup update stable --no-self-update
5656
rustup default stable
5757
rustup component add rustfmt
5858
- run: cargo fmt -- --check
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@master
6565
- name: Install Rust
6666
run: |
67-
rustup update 1.31.0
67+
rustup update 1.31.0 --no-self-update
6868
rustup default 1.31.0
6969
- run: cargo build --verbose
7070
- run: cargo build --verbose --features serde
@@ -77,7 +77,7 @@ jobs:
7777
- uses: actions/checkout@master
7878
- name: Install Rust
7979
run: |
80-
rustup update stable
80+
rustup update stable --no-self-update
8181
rustup default stable
8282
- run: rustup target add thumbv6m-none-eabi
8383
- run: cargo build --verbose --target=thumbv6m-none-eabi

CHANGELOG.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@
22

33
## [Unreleased]
44

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)
621

722
### Fixed
823

924
* Fixed the `log!` macros so they work in expression context (this regressed in `0.4.9`, which has been yanked).
1025

11-
## [0.4.9] - 2019-12-12
26+
## [0.4.9] - 2019-12-12 (yanked)
1227

1328
### Minimum Supported Rust Version
1429

@@ -155,7 +170,8 @@ version using log 0.4.x to avoid losing module and file information.
155170

156171
Look at the [release tags] for information about older releases.
157172

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
159175
[0.4.10]: https://github.com/rust-lang-nursery/log/compare/0.4.9...0.4.10
160176
[0.4.9]: https://github.com/rust-lang-nursery/log/compare/0.4.8...0.4.9
161177
[0.4.8]: https://github.com/rust-lang-nursery/log/compare/0.4.7...0.4.8

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "log"
4-
version = "0.4.10" # remember to update html_root_url
4+
version = "0.4.11" # remember to update html_root_url
55
authors = ["The Rust Project Developers"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
#![doc(
267267
html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
268268
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"
270270
)]
271271
#![warn(missing_docs)]
272272
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)