Skip to content

Commit 5a30ca5

Browse files
committed
Fix build; prepare 0.22.1
1 parent 90e7654 commit 5a30ca5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyper-rustls"
3-
version = "0.22.0"
3+
version = "0.22.1"
44
edition = "2018"
55
authors = ["Joseph Birr-Pixton <jpixton@gmail.com>"]
66
license = "Apache-2.0/ISC/MIT"

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and the [hyper HTTP library](https://github.com/hyperium/hyper).
88
[![Documentation](https://docs.rs/hyper-rustls/badge.svg)](https://docs.rs/hyper-rustls/)
99

1010
# Release history
11+
- 0.22.1 (2020-12-27):
12+
* Fixing docs.rs build; no other changes.
1113
- 0.22.0 (2020-12-26):
1214
* Use tokio 1.0, hyper 0.14, and rustls 0.19. Thanks to @paolobarbolini and @messense.
1315
* Rework how the certificate store is chosen: now by an explicit API rather than

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
//! # fn main() {}
2323
//! ```
2424
25-
#![feature(doc_cfg)]
25+
#![cfg_attr(docsrs, feature(doc_cfg))]
2626

2727
mod connector;
2828
mod stream;

0 commit comments

Comments
 (0)