From 43d9a50e6240716d68dadd9d037f22b2f7df4b58 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 27 Nov 2014 10:16:49 -0800 Subject: [PATCH] Bump to 0.1.0 --- phf/Cargo.toml | 6 +++--- phf_mac/Cargo.toml | 4 ++-- phf_shared/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 90656c63..cb62a810 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.0.1" +version = "0.1.0" license = "MIT" description = "Runtime support for perfect hash function data structures" @@ -12,8 +12,8 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "0.0.1" +version = "=0.1.0" [dev_dependencies.phf_mac] path = "../phf_mac" -version = "0.0.1" +version = "=0.1.0" diff --git a/phf_mac/Cargo.toml b/phf_mac/Cargo.toml index aea1eccc..26018197 100644 --- a/phf_mac/Cargo.toml +++ b/phf_mac/Cargo.toml @@ -2,7 +2,7 @@ name = "phf_mac" authors = ["Steven Fackler "] -version = "0.0.1" +version = "0.1.0" license = "MIT" description = "Compiler plugin for perfect hash function data structures" @@ -15,7 +15,7 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "0.0.1" +version = "=0.1.0" [dependencies] time = "*" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 64c5598d..92d56a99 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.0.1" +version = "0.1.0" license = "MIT" description = "Support code shared by phf and phf_mac"