From 6cf897c805b6466b756f8f21b0af252480b64195 Mon Sep 17 00:00:00 2001 From: sharnoff Date: Sat, 20 Mar 2021 16:30:39 -0700 Subject: [PATCH] bump to version 0.1.5 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e3c01b..2b1586e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "derive-syn-parse" -version = "0.1.4" +version = "0.1.5" authors = ["sharnoff "] license = "MIT OR Apache-2.0" description = "Derive macro for `syn::parse::Parse`" diff --git a/README.md b/README.md index ab94899..babab47 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Using this crate is as simple as adding it to your 'Cargo.toml' and importing th # Cargo.toml [dependencies] -derive-syn-parse = "0.1.4" +derive-syn-parse = "0.1.5" ``` ```rust diff --git a/src/lib.rs b/src/lib.rs index 92ee8f0..e0a42a1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! # Cargo.toml //! //! [dependencies] -//! derive-syn-parse = "0.1" +//! derive-syn-parse = "0.1.5" //! ``` //! //! ```