Skip to content

Commit

Permalink
Release 0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 1, 2020
1 parent 506c864 commit fc580bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.1.10] - 2020-10-01

* Fix compatibility with `drop_bounds` lint, which will be added to rustc in the future. See [taiki-e/pin-project#272](https://github.com/taiki-e/pin-project/issues/272) for more details.

## [0.1.9] - 2020-09-29

* Fix trailing comma support in generics
Expand Down Expand Up @@ -72,7 +76,8 @@ This project adheres to [Semantic Versioning](https://semver.org).

Initial release

[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.9...HEAD
[Unreleased]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.10...HEAD
[0.1.10]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.9...v0.1.10
[0.1.9]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.8...v0.1.9
[0.1.8]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.7...v0.1.8
[0.1.7]: https://github.com/taiki-e/pin-project-lite/compare/v0.1.6...v0.1.7
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pin-project-lite"
version = "0.1.9"
version = "0.1.10"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.9")]
#![doc(html_root_url = "https://docs.rs/pin-project-lite/0.1.10")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down

0 comments on commit fc580bc

Please sign in to comment.