Skip to content

Commit

Permalink
Release v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Apr 9, 2015
1 parent 6c98e9f commit 9cb9de9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions phf/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"
Expand All @@ -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" }
6 changes: 3 additions & 3 deletions phf_codegen/Cargo.toml
@@ -1,16 +1,16 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.0"
version = "0.7.1"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
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"
4 changes: 2 additions & 2 deletions phf_generator/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.0"
version = "0.7.1"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
Expand All @@ -12,4 +12,4 @@ rand = "0.3"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.7.0"
version = "=0.7.1"
8 changes: 4 additions & 4 deletions phf_macros/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_macros"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"
Expand All @@ -18,16 +18,16 @@ 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"
optional = true

[dev-dependencies.phf]
path = "../phf"
version = "=0.7.0"
version = "=0.7.1"
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.0"
version = "0.7.1"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
Expand Down

0 comments on commit 9cb9de9

Please sign in to comment.