Skip to content

Commit 06aea06

Browse files
committed
Release 0.1.6
1 parent 9bbd28e commit 06aea06

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ This project adheres to [Semantic Versioning](https://semver.org).
66

77
## [Unreleased]
88

9+
## [0.1.6] - 2020-05-31
10+
11+
* [Support lifetime bounds in where clauses.][18]
12+
13+
* Documentation improvements.
14+
15+
[18]: https://github.com/taiki-e/pin-project-lite/pull/18
16+
917
## [0.1.5] - 2020-05-07
1018

1119
* [Support overwriting the name of core crate.][14]
@@ -40,7 +48,8 @@ This project adheres to [Semantic Versioning](https://semver.org).
4048

4149
Initial release
4250

43-
[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.5...HEAD
51+
[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.6...HEAD
52+
[0.1.6]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.5...v0.1.6
4453
[0.1.5]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.4...v0.1.5
4554
[0.1.4]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.3...v0.1.4
4655
[0.1.3]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.2...v0.1.3

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pin-project-lite"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Taiki Endo <[email protected]>"]
55
edition = "2018"
66
license = "Apache-2.0 OR MIT"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
6969
#![no_std]
7070
#![recursion_limit = "256"]
71-
#![doc(html_root_url = "https://docs.rs/pin-project-lite/0.1.5")]
71+
#![doc(html_root_url = "https://docs.rs/pin-project-lite/0.1.6")]
7272
#![doc(test(
7373
no_crate_inject,
7474
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

0 commit comments

Comments
 (0)