diff --git a/CHANGELOG.md b/CHANGELOG.md index 17b1f87..ffe3ef5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ This project adheres to [Semantic Versioning](https://semver.org). ## [Unreleased] +## [0.1.8] - 2020-09-26 + +* Fix compatibility of generated code with `forbid(future_incompatible)` + + Note: This does not guarantee compatibility with `forbid(future_incompatible)` in the future. + If rustc adds a new lint, we may not be able to keep this. + ## [0.1.7] - 2020-06-04 * [Support `?Sized` bounds in where clauses.][22] diff --git a/Cargo.toml b/Cargo.toml index 08124f3..d7fd853 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pin-project-lite" -version = "0.1.7" +version = "0.1.8" authors = ["Taiki Endo "] edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/src/lib.rs b/src/lib.rs index 51048a4..31622ca 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -69,7 +69,7 @@ //! [unsafe-unpin]: https://docs.rs/pin-project/0.4/pin_project/attr.pin_project.html#unsafeunpin #![no_std] -#![doc(html_root_url = "https://docs.rs/pin-project-lite/0.1.7")] +#![doc(html_root_url = "https://docs.rs/pin-project-lite/0.1.8")] #![doc(test( no_crate_inject, attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))