Skip to content

Commit c1b8645

Browse files
Bump version to 0.1.2
1 parent 7e80846 commit c1b8645

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "enum-utils"
3-
version = "0.1.1"
3+
version = "0.1.2" # remember to update html_root_url
44
authors = ["Dylan MacKenzie <[email protected]>"]
55
edition = "2018"
66

@@ -26,11 +26,14 @@ proc-macro = true
2626
[dependencies]
2727
proc-macro2 = "1.0"
2828
quote = "1.0"
29-
enum-utils-from-str = { path = "from-str", version = "0.1.0" }
29+
enum-utils-from-str = { path = "from-str", version = "0.1.2" }
3030
serde_derive_internals = "0.25"
3131
syn = { version = "1.0", features = ["extra-traits"] }
3232

3333
[dependencies.failure]
3434
version = "0.1"
3535
default-features = false
3636
features = ["std"]
37+
38+
[dev-dependencies]
39+
version-sync = "0.8"

from-str/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "enum-utils-from-str"
3-
version = "0.1.0"
3+
version = "0.1.2"
44
authors = ["Dylan MacKenzie <[email protected]>"]
55
edition = "2018"
66

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! A set of procedural macros for deriving useful functionality on enums.
22
3+
#![doc(html_root_url = "https://docs.rs/enum-utils/0.1.2")]
4+
35
extern crate proc_macro;
46

57
#[macro_use]

tests/version.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#[test]
2+
fn test_readme_deps() {
3+
version_sync::assert_markdown_deps_updated!("README.md");
4+
}
5+
6+
#[test]
7+
fn test_html_root_url() {
8+
version_sync::assert_html_root_url_updated!("src/lib.rs");
9+
}

0 commit comments

Comments
 (0)