From 09d687053caf4d321f72907528573b3334fae3c2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 24 Jan 2015 20:01:42 -0800 Subject: [PATCH] Release v0.6.0 --- phf/Cargo.toml | 6 +++--- phf_macros/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 11dc64d8..01ac0a1c 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.5.0" +version = "0.6.0" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -14,8 +14,8 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.5.0" +version = "=0.6.0" [dev_dependencies.phf_macros] path = "../phf_macros" -version = "=0.5.0" +version = "=0.6.0" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 1d03af80..a212cbc9 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.5.0" +version = "0.6.0" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -17,7 +17,7 @@ stats = ["time"] [dependencies.phf_shared] path = "../phf_shared" -version = "=0.5.0" +version = "=0.6.0" [dependencies.time] version = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 8a55c313..62b1e98e 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.5.0" +version = "0.6.0" license = "MIT" description = "Support code shared by phf and phf_mac" repository = "https://github.com/sfackler/rust-phf"