From 9cb9de911ad4e16964f0def29780dde1630c3619 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Thu, 9 Apr 2015 10:14:09 -0700 Subject: [PATCH] Release v0.7.1 --- phf/Cargo.toml | 4 ++-- phf_codegen/Cargo.toml | 6 +++--- phf_generator/Cargo.toml | 4 ++-- phf_macros/Cargo.toml | 8 ++++---- phf_shared/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 06eba362..f6765a5b 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.7.0" +version = "0.7.1" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -14,4 +14,4 @@ test = false [dependencies] debug-builders = "0.1" -phf_shared = { version = "=0.7.0", path = "../phf_shared" } +phf_shared = { version = "=0.7.1", path = "../phf_shared" } diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index 68f0ee18..eabd452a 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.7.0" +version = "0.7.1" license = "MIT" description = "Codegen library for PHF types" repository = "https://github.com/sfackler/rust-phf" @@ -9,8 +9,8 @@ documentation = "https://sfackler.github.io/rust-phf/doc/phf_codegen" [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.0" +version = "=0.7.1" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.0" +version = "=0.7.1" diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 4b23d766..0c6a6094 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.7.0" +version = "0.7.1" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" @@ -12,4 +12,4 @@ rand = "0.3" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.0" +version = "=0.7.1" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index ec2f306f..33d930be 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.7.0" +version = "0.7.1" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -18,11 +18,11 @@ stats = ["time"] [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.0" +version = "=0.7.1" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.0" +version = "=0.7.1" [dependencies.time] version = "0.1" @@ -30,4 +30,4 @@ optional = true [dev-dependencies.phf] path = "../phf" -version = "=0.7.0" +version = "=0.7.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index e25879f4..75578039 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.7.0" +version = "0.7.1" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf"