From df87133af76a898734a29ec2ce95663833b0e188 Mon Sep 17 00:00:00 2001 From: Ted Driggs Date: Tue, 22 May 2018 12:28:09 -0700 Subject: [PATCH] Bump version to 0.6.2 --- Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index defc04e..791ff4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "darling" -version = "0.6.1" +version = "0.6.2" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" -documentation = "https://docs.rs/darling/0.6.1" +documentation = "https://docs.rs/darling/0.6.2" description = """ A proc-macro library for reading attributes into structs when implementing custom derives. @@ -15,8 +15,8 @@ readme = "README.md" travis-ci = { repository = "TedDriggs/darling" } [dependencies] -darling_core = { version = "=0.6.1", path = "core" } -darling_macro = { version = "=0.6.1", path = "macro" } +darling_core = { version = "=0.6.2", path = "core" } +darling_macro = { version = "=0.6.2", path = "macro" } [dev-dependencies] quote = "0.5" diff --git a/core/Cargo.toml b/core/Cargo.toml index fbea7c1..09060b0 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_core" -version = "0.6.1" +version = "0.6.2" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ca8c813..bea024e 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darling_macro" -version = "0.6.1" +version = "0.6.2" authors = ["Ted Driggs "] repository = "https://github.com/TedDriggs/darling" description = """ @@ -12,7 +12,7 @@ license = "MIT" [dependencies] quote = "0.5" syn = "0.13" -darling_core = { version = "=0.6.1", path = "../core" } +darling_core = { version = "=0.6.2", path = "../core" } [lib] proc-macro = true