Skip to content

Commit

Permalink
Release 0.6.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Aug 30, 2019
1 parent c1e63bf commit 99b9e5d
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased

# 0.6.0-alpha.2 - 2019-08-30

* [Removed `marker(name)` option in favor of `marker = name`.][55]

* [Removed `"proc_macro"` crate feature.][54]
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.0-alpha.1"
version = "0.6.0-alpha.2"
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.0-alpha.1", path = "core", default-features = false }
auto_enums_derive = { version = "=0.6.0-alpha.1", path = "derive", default-features = false }
auto_enums_core = { version = "=0.6.0-alpha.2", path = "core", default-features = false }
auto_enums_derive = { version = "=0.6.0-alpha.2", 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
auto_enums = "0.6.0-alpha.1"
auto_enums = "0.6.0-alpha.2"
```

The current auto_enums requires Rust 1.31 or later.
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.0-alpha.1"
version = "0.6.0-alpha.2"
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.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.6.0-alpha.2")]
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
#![warn(unsafe_code)]
#![warn(rust_2018_idioms, unreachable_pub)]
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.0-alpha.1"
version = "0.6.0-alpha.2"
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.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.6.0-alpha.2")]
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
#![warn(unsafe_code)]
#![warn(rust_2018_idioms, unreachable_pub)]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@
//!
#![recursion_limit = "256"]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.0-alpha.1")]
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.0-alpha.2")]
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
#![no_std]
#![warn(unsafe_code)]
Expand Down

0 comments on commit 99b9e5d

Please sign in to comment.