Skip to content

Commit

Permalink
Release 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed May 7, 2020
1 parent 48a5d22 commit c82a287
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 14 deletions.
23 changes: 17 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,29 @@ This project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.7.4] - 2020-05-07

* [Fixed an issue that `#[project]` on non-statement expression does not work without unstable features.][97]

[97]: https://github.com/taiki-e/auto_enums/pull/97

## [0.7.3] - 2020-04-19

* Added support for `tokio02::{AsyncRead, AsyncWrite, AsyncSeek, AsyncBufRead}`.
* [Added support for `tokio02::{AsyncRead, AsyncWrite, AsyncSeek, AsyncBufRead}`.][92]

* Added support for `tokio01::{AsyncRead, AsyncWrite}`.
* [Added support for `tokio01::{AsyncRead, AsyncWrite}`.][92]

* Added `futures03` feature. This is an alias of `futures` feature.
* [Added `futures03` feature. This is an alias of `futures` feature.][92]

[97]: https://github.com/taiki-e/auto_enums/pull/92

## [0.7.2] - 2020-04-13

* Fix unused braces warnings
* [Fix unused braces warnings.][88]

* Update to support latest generator.

* Update to support latest generator
[88]: https://github.com/taiki-e/auto_enums/pull/88

## [0.7.1] - 2019-11-16

Expand Down Expand Up @@ -281,7 +291,8 @@ This project adheres to [Semantic Versioning](https://semver.org).

Initial release

[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.3...HEAD
[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.4...HEAD
[0.7.4]: https://github.com/taiki-e/auto_enums/compare/v0.7.3...v0.7.4
[0.7.3]: https://github.com/taiki-e/auto_enums/compare/v0.7.2...v0.7.3
[0.7.2]: https://github.com/taiki-e/auto_enums/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/taiki-e/auto_enums/compare/v0.7.0...v0.7.1
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auto_enums"
version = "0.7.3"
version = "0.7.4"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -76,8 +76,8 @@ fn_traits = ["auto_enums_derive/fn_traits"]
trusted_len = ["auto_enums_derive/trusted_len"]

[dependencies]
auto_enums_core = { version = "=0.7.3", path = "core", default-features = false }
auto_enums_derive = { version = "=0.7.3", path = "derive", default-features = false }
auto_enums_core = { version = "=0.7.4", path = "core", default-features = false }
auto_enums_derive = { version = "=0.7.4", path = "derive", default-features = false }

[dev-dependencies]
trybuild = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auto_enums_core"
version = "0.7.3"
version = "0.7.4"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! An internal crate to support auto_enums - **do not use directly**

#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.7.3")]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.7.4")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auto_enums_derive"
version = "0.7.3"
version = "0.7.4"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! An internal crate to support auto_enums - **do not use directly**

#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.7.3")]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.7.4")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@

#![no_std]
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.7.3")]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.7.4")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down

0 comments on commit c82a287

Please sign in to comment.