Skip to content

Commit

Permalink
Release v0.7.24
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Jan 5, 2019
1 parent 3585d01 commit 1287414
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 25 deletions.
7 changes: 3 additions & 4 deletions phf/Cargo.toml
@@ -1,11 +1,10 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.23"
version = "0.7.24"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf/0.7.23/phf"

[lib]
name = "phf"
Expand All @@ -18,6 +17,6 @@ unicase = ["phf_shared/unicase"]
macros = ["phf_macros"]

[dependencies]
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
phf_shared = { version = "0.7.24", path = "../phf_shared" }

phf_macros = { version = "0.7.23", optional = true, path = "../phf_macros" }
phf_macros = { version = "0.7.24", optional = true, path = "../phf_macros" }
2 changes: 1 addition & 1 deletion phf/src/lib.rs
Expand Up @@ -37,7 +37,7 @@
//!
//! Alternatively, you can use the phf_codegen crate to generate PHF datatypes
//! in a build script. This method can be used with a stable compiler.
#![doc(html_root_url="https://docs.rs/phf/0.7.20")]
#![doc(html_root_url="https://docs.rs/phf/0.7")]
#![warn(missing_docs)]
#![cfg_attr(feature = "core", no_std)]

Expand Down
6 changes: 3 additions & 3 deletions phf_builder/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "phf_builder"
version = "0.7.23"
version = "0.7.24"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "Runtime creation of perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"

[dependencies]
phf = { version = "=0.7.23", path = "../phf" }
phf_generator = { version = "=0.7.23", path = "../phf_generator" }
phf = { version = "0.7.24", path = "../phf" }
phf_generator = { version = "0.7.24", path = "../phf_generator" }
2 changes: 1 addition & 1 deletion phf_builder/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="https://docs.rs/phf_builder/0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_builder/0.7")]
extern crate phf;
extern crate phf_generator;

Expand Down
7 changes: 3 additions & 4 deletions phf_codegen/Cargo.toml
@@ -1,12 +1,11 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.23"
version = "0.7.24"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_codegen/0.7.23/phf_codegen"

[dependencies]
phf_generator = { version = "=0.7.23", path = "../phf_generator" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
phf_generator = { version = "0.7.24", path = "../phf_generator" }
phf_shared = { version = "0.7.24", path = "../phf_shared" }
2 changes: 1 addition & 1 deletion phf_codegen/src/lib.rs
Expand Up @@ -78,7 +78,7 @@
//! builder.entry("world", "2");
//! // ...
//! ```
#![doc(html_root_url="https://docs.rs/phf_codegen/0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_codegen/0.7")]
extern crate phf_shared;
extern crate phf_generator;

Expand Down
5 changes: 2 additions & 3 deletions phf_generator/Cargo.toml
@@ -1,12 +1,11 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.23"
version = "0.7.24"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_generator/0.7.23/phf_generator"

[dependencies]
rand = "0.6"
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
phf_shared = { version = "0.7.24", path = "../phf_shared" }
2 changes: 1 addition & 1 deletion phf_generator/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="https://docs.rs/phf_generator/0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_generator/0.7")]
extern crate phf_shared;
extern crate rand;

Expand Down
11 changes: 7 additions & 4 deletions phf_macros/Cargo.toml
@@ -1,8 +1,11 @@
[package]
name = "phf_macros"
version = "0.7.23"
version = "0.7.24"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT"
description = "Macros to generate types in the phf crate"
repository = "https://github.com/sfackler/rust-phf"

[lib]
proc-macro = true
Expand All @@ -12,9 +15,9 @@ syn = { version = "0.15", features = ["full"] }
quote = "0.6"
proc-macro2 = "0.4"

phf_generator = { version = "=0.7.23", path = "../phf_generator" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
phf_generator = { version = "0.7.24", path = "../phf_generator" }
phf_shared = { version = "0.7.24", path = "../phf_shared" }

[dev-dependencies]
compiletest_rs = "0.3"
phf = { version = "0.7.23", path = "../phf", features = ["macros"] }
#phf = { version = "0.7", path = "../phf", features = ["macros"] }
3 changes: 1 addition & 2 deletions phf_shared/Cargo.toml
@@ -1,11 +1,10 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.23"
version = "0.7.24"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_shared/0.7.23/phf_shared"

[lib]
name = "phf_shared"
Expand Down
2 changes: 1 addition & 1 deletion phf_shared/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="https://docs.rs/phf_shared/0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_shared/0.7")]
#![cfg_attr(feature = "core", no_std)]

#[cfg(not(feature = "core"))]
Expand Down

0 comments on commit 1287414

Please sign in to comment.