Skip to content

Commit

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

## [Unreleased]

## [0.7.9] - 2020-11-06

* Update `derive_utils` to 0.11.

## [0.7.8] - 2020-10-16
Expand Down Expand Up @@ -323,7 +325,8 @@ This project adheres to [Semantic Versioning](https://semver.org).

Initial release

[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.8...HEAD
[Unreleased]: https://github.com/taiki-e/auto_enums/compare/v0.7.9...HEAD
[0.7.9]: https://github.com/taiki-e/auto_enums/compare/v0.7.8...v0.7.9
[0.7.8]: https://github.com/taiki-e/auto_enums/compare/v0.7.7...v0.7.8
[0.7.7]: https://github.com/taiki-e/auto_enums/compare/v0.7.6...v0.7.7
[0.7.6]: https://github.com/taiki-e/auto_enums/compare/v0.7.5...v0.7.6
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.8"
version = "0.7.9"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0 OR MIT"
Expand Down Expand Up @@ -79,8 +79,8 @@ fn_traits = ["auto_enums_derive/fn_traits"]
trusted_len = ["auto_enums_derive/trusted_len"]

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

[dev-dependencies]
rustversion = "1"
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.8"
version = "0.7.9"
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,6 +1,6 @@
//! An internal crate to support auto_enums - **do not use directly**

#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.7.8")]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.7.9")]
#![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.8"
version = "0.7.9"
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,6 +1,6 @@
//! An internal crate to support auto_enums - **do not use directly**

#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.7.8")]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.7.9")]
#![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 @@ -807,7 +807,7 @@
//! * There needs to be marker macros for unsupported expressions.

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

0 comments on commit e265013

Please sign in to comment.