Skip to content

Commit ef5b2b5

Browse files
committed
Release 0.6.2
1 parent c8e6d68 commit ef5b2b5

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Unreleased
22

3+
# 0.6.2 - 2019-09-08
4+
5+
* Fixed links to generated code.
6+
37
# 0.6.1 - 2019-09-08
48

59
* Improved documentation.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auto_enums"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"
@@ -17,8 +17,8 @@ A library for to allow multiple return types by automatically generated enum.
1717
members = ["core", "derive", "test_suite"]
1818

1919
[dependencies]
20-
auto_enums_core = { version = "=0.6.1", path = "core", default-features = false }
21-
auto_enums_derive = { version = "=0.6.1", path = "derive", default-features = false }
20+
auto_enums_core = { version = "=0.6.2", path = "core", default-features = false }
21+
auto_enums_derive = { version = "=0.6.2", path = "derive", default-features = false }
2222

2323
[dev-dependencies]
2424
compiletest = { version = "0.3.22", package = "compiletest_rs", features = ["stable", "tmp"] }

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auto_enums_core"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"

core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![recursion_limit = "256"]
2-
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.6.1")]
2+
#![doc(html_root_url = "https://docs.rs/auto_enums_core/0.6.2")]
33
#![doc(test(
44
no_crate_inject,
55
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "auto_enums_derive"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
authors = ["Taiki Endo <te316e89@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0/MIT"

derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![recursion_limit = "256"]
2-
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.6.1")]
2+
#![doc(html_root_url = "https://docs.rs/auto_enums_derive/0.6.2")]
33
#![doc(test(
44
no_crate_inject,
55
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@
807807
808808
#![no_std]
809809
#![recursion_limit = "256"]
810-
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.1")]
810+
#![doc(html_root_url = "https://docs.rs/auto_enums/0.6.2")]
811811
#![doc(test(
812812
no_crate_inject,
813813
attr(deny(warnings, rust_2018_idioms, single_use_lifetimes), allow(dead_code))

0 commit comments

Comments
 (0)