Skip to content

Commit

Permalink
Release 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Sep 20, 2019
1 parent e2c893b commit 28de020
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Unreleased

# 0.6.3 - 2019-09-20

* [Removed usage of mutable global state from `#[auto_enum]` for forward compatibility.][60] See also [rust-lang/rust#63831].

[60]: https://github.com/taiki-e/auto_enums/pull/60
[rust-lang/rust#63831]: https://github.com/rust-lang/rust/pull/63831

# 0.6.2 - 2019-09-08

* Fixed links to generated code.
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.6.2"
version = "0.6.3"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand All @@ -17,8 +17,8 @@ A library for to allow multiple return types by automatically generated enum.
members = ["core", "derive", "test_suite"]

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

[dev-dependencies]
compiletest = { version = "0.3.22", package = "compiletest_rs", features = ["stable", "tmp"] }
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.6.2"
version = "0.6.3"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand Down
2 changes: 1 addition & 1 deletion core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.6.2")]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.6.3")]
#![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.6.2"
version = "0.6.3"
authors = ["Taiki Endo <te316e89@gmail.com>"]
edition = "2018"
license = "Apache-2.0/MIT"
Expand Down
2 changes: 1 addition & 1 deletion derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.6.2")]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.6.3")]
#![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 @@
#![no_std]
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.2")]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.3")]
#![doc(test(
no_crate_inject,
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))
Expand Down

0 comments on commit 28de020

Please sign in to comment.