Skip to content

Commit 5ca8839

Browse files
authored
Merge pull request #616 from us-irs/remove-doc-auto-cfg-feature
removed doc_auto_cfg feature, was merged into doc_cfg
2 parents bbe988d + 32ed209 commit 5ca8839

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
151151
- Removed `sorted_linked_list::Iter` and `sorted_linked_list::IterInner`.
152152
- Removed `sorted_linked_list::FindMut` and `sorted_linked_list::FindMutInner`.
153153
- The `Q2`, `Q4`, `Q8`, `Q16`, `Q32` and `Q64` aliases for `MpMcQueue` have been removed.
154+
- `doc_auto_cfg` feature which was merged into `doc_cfg`. Presence of the feature led to doc
155+
build failures on nightly.
154156

155157
## [v0.8.0] - 2023-11-07
156158

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
//!
124124
//! In other words, changes in the Rust version requirement of this crate are not considered semver
125125
//! breaking change and may occur in patch version releases.
126-
#![cfg_attr(docsrs, feature(doc_cfg), feature(doc_auto_cfg))]
126+
#![cfg_attr(docsrs, feature(doc_cfg))]
127127
#![cfg_attr(not(test), no_std)]
128128
#![deny(missing_docs)]
129129
#![cfg_attr(

0 commit comments

Comments
 (0)