Skip to content

Commit

Permalink
Release v0.6.10
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Feb 22, 2015
1 parent e22cdea commit fc45373
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
8 changes: 2 additions & 6 deletions phf/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.6.9"
version = "0.6.10"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
Expand All @@ -14,8 +14,4 @@ test = false

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.6.9"

[dev_dependencies.phf_macros]
path = "../phf_macros"
version = "=0.6.9"
version = "=0.6.10"
8 changes: 4 additions & 4 deletions phf_codegen/Cargo.toml
@@ -1,20 +1,20 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.6.9"
version = "0.6.10"
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.6.9"
version = "=0.6.10"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.6.9"
version = "=0.6.10"

[dev-dependencies.phf]
path = "../phf"
version = "=0.6.9"
version = "=0.6.10"
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.6.9"
version = "0.6.10"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
Expand All @@ -12,4 +12,4 @@ rand = "0.1"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.6.9"
version = "=0.6.10"
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.6.9"
version = "0.6.10"
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.6.9"
version = "=0.6.10"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.6.9"
version = "=0.6.10"

[dependencies.time]
version = "0.1"
optional = true

[dev-dependencies.phf]
path = "../phf"
version = "=0.6.9"
version = "=0.6.10"
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.6.9"
version = "0.6.10"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
Expand Down

0 comments on commit fc45373

Please sign in to comment.