From b0c5e3cb69742f81160ea80a3ba1782a0b4e01a2 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 5 Feb 2015 21:13:26 -0800 Subject: [PATCH] Release v0.6.3 --- 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 b57ea71b..3ab0344d 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.6.2" +version = "0.6.3" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -17,8 +17,8 @@ core = ["phf_shared/core"] [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.2" +version = "=0.6.3" [dev_dependencies.phf_macros] path = "../phf_macros" -version = "=0.6.2" +version = "=0.6.3" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index a0f9adb8..8a2e3684 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.6.2" +version = "0.6.3" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -20,7 +20,7 @@ rand = "0.1" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.2" +version = "=0.6.3" [dependencies.time] version = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index ed0f255b..26cb0c26 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.6.2" +version = "0.6.3" license = "MIT" description = "Support code shared by phf and phf_mac" repository = "https://github.com/sfackler/rust-phf"