Skip to content

Commit b6e0ae0

Browse files
authored
Merge pull request #200 from artichoke/release-2.2.2-doc-build-fix
Fix rustdoc build and prepare v2.2.2 release
2 parents 2508ddc + 90143b9 commit b6e0ae0

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "raw-parts"
3-
version = "2.2.1"
3+
version = "2.2.2"
44
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
55
license = "MIT"
66
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this to your `Cargo.toml`:
2323

2424
```toml
2525
[dependencies]
26-
raw-parts = "2.2.1"
26+
raw-parts = "2.2.2"
2727
```
2828

2929
Then decompose `Vec<T>`s like:

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
//
1818
// This approach is borrowed from tokio.
1919
#![cfg_attr(docsrs, feature(doc_cfg))]
20-
#![cfg_attr(docsrs, feature(doc_alias))]
2120

2221
//! A wrapper around the decomposed parts of a `Vec<T>`.
2322
//!
@@ -53,7 +52,7 @@
5352
//! raw-parts is `no_std` compatible with a required dependency on [`alloc`].
5453
5554
#![no_std]
56-
#![doc(html_root_url = "https://docs.rs/raw-parts/2.2.1")]
55+
#![doc(html_root_url = "https://docs.rs/raw-parts/2.2.2")]
5756

5857
extern crate alloc;
5958

0 commit comments

Comments
 (0)