From c7c0d3c294126157f0275a05b7c3a65c419234a1 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 3 Aug 2015 23:33:29 -0700 Subject: [PATCH] Release v0.7.4 --- README.md | 3 +-- phf/Cargo.toml | 6 +++--- phf/src/lib.rs | 2 +- phf_codegen/Cargo.toml | 8 ++++---- phf_codegen/src/lib.rs | 2 +- phf_generator/Cargo.toml | 6 +++--- phf_generator/src/lib.rs | 2 +- phf_macros/Cargo.toml | 10 +++++----- phf_macros/src/lib.rs | 2 +- phf_shared/Cargo.toml | 4 ++-- phf_shared/src/lib.rs | 2 +- 11 files changed, 23 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index ed837bda..5f5e9127 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ Rust-PHF [![Build Status](https://travis-ci.org/sfackler/rust-phf.png?branch=master)](https://travis-ci.org/sfackler/rust-phf) [![Latest Version](https://img.shields.io/crates/v/phf.svg)](https://crates.io/crates/phf) +[Documentation](https://sfackler.github.io/rust-phf/doc/v0.7.4/phf) Rust-PHF is a library to generate efficient lookup tables at compile time using [perfect hash functions](http://en.wikipedia.org/wiki/Perfect_hash_function). @@ -15,8 +16,6 @@ produced, but if you use the `phf_mac` crate with the `stats` feature enabled `Cargo.toml` instead of `phf_macros`) and set the environment variable `PHF_STATS` it will issue a compiler note about how long it took. -Documentation is available at https://sfackler.github.io/rust-phf/doc/phf - Usage ===== diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 088b3204..83adefa0 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.7.3" +version = "0.7.4" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://sfackler.github.io/rust-phf/doc/phf" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.4/phf" [lib] name = "phf" @@ -14,4 +14,4 @@ test = false [dependencies] debug-builders = "0.1" -phf_shared = { version = "=0.7.3", path = "../phf_shared" } +phf_shared = { version = "=0.7.4", path = "../phf_shared" } diff --git a/phf/src/lib.rs b/phf/src/lib.rs index 570d6561..9838aa6b 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -3,7 +3,7 @@ //! PHF data structures can be generated via the syntax extensions in the //! `phf_macros` crate or via code generation in the `phf_codegen` crate. See //! the documentation of those crates for more details. -#![doc(html_root_url="https://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="https://sfackler.github.io/rust-phf/doc/v0.7.4")] #![warn(missing_docs)] extern crate debug_builders; diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index ed7b434a..aa18337f 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.7.3" +version = "0.7.4" 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" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.4/phf_codegen" [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.3" +version = "=0.7.4" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.3" +version = "=0.7.4" diff --git a/phf_codegen/src/lib.rs b/phf_codegen/src/lib.rs index ef67bc21..f5d5857c 100644 --- a/phf_codegen/src/lib.rs +++ b/phf_codegen/src/lib.rs @@ -77,7 +77,7 @@ //! builder.entry("world", "2"); //! // ... //! ``` -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.4")] extern crate phf_shared; extern crate phf_generator; diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 6fda94ec..28b619ab 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.7.3" +version = "0.7.4" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://sfackler.github.io/rust-phf/doc/phf_generator" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.4/phf_generator" [dependencies] rand = "0.3" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.3" +version = "=0.7.4" diff --git a/phf_generator/src/lib.rs b/phf_generator/src/lib.rs index 09f7a88c..64e04db0 100644 --- a/phf_generator/src/lib.rs +++ b/phf_generator/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.4")] extern crate phf_shared; extern crate rand; diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index a28f8089..872f67e2 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.7.3" +version = "0.7.4" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://sfackler.github.io/rust-phf/doc/phf_macros" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.4/phf_macros" [lib] name = "phf_macros" @@ -18,11 +18,11 @@ stats = ["time"] [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.3" +version = "=0.7.4" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.3" +version = "=0.7.4" [dependencies.time] version = "0.1" @@ -30,4 +30,4 @@ optional = true [dev-dependencies.phf] path = "../phf" -version = "=0.7.3" +version = "=0.7.4" diff --git a/phf_macros/src/lib.rs b/phf_macros/src/lib.rs index 9c3f886c..053f4715 100644 --- a/phf_macros/src/lib.rs +++ b/phf_macros/src/lib.rs @@ -30,7 +30,7 @@ //! } //! # fn main() {} //! ``` -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.4")] #![feature(plugin_registrar, quote, rustc_private)] extern crate syntax; diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 38b9f795..b1b15e91 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.7.3" +version = "0.7.4" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://sfackler.github.io/rust-phf/doc/phf_shared" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.4/phf_shared" [lib] name = "phf_shared" diff --git a/phf_shared/src/lib.rs b/phf_shared/src/lib.rs index 31acb62b..1ce31fa4 100644 --- a/phf_shared/src/lib.rs +++ b/phf_shared/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.4")] use std::hash::{Hasher, Hash, SipHasher};