From b2efebf54a1bb2411a63f2f1831d79c9e82db955 Mon Sep 17 00:00:00 2001 From: Dan Burkert Date: Sat, 15 Jul 2017 15:55:35 -0700 Subject: [PATCH] 0.7.1 --- Cargo.toml | 4 ++-- lmdb-sys/Cargo.toml | 2 +- lmdb-sys/src/lib.rs | 2 +- src/lib.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 54a62ed..66d4d3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "lmdb" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.7.0" +version = "0.7.1" authors = ["Dan Burkert "] license = "Apache-2.0" @@ -20,7 +20,7 @@ appveyor = { repository = "danburkert/lmdb-rs" } [dependencies] bitflags = "0.9" libc = "0.2" -lmdb-sys = { path = "lmdb-sys" } +lmdb-sys = "0.7.1" [dev-dependencies] rand = "0.3" diff --git a/lmdb-sys/Cargo.toml b/lmdb-sys/Cargo.toml index b153047..79300a1 100644 --- a/lmdb-sys/Cargo.toml +++ b/lmdb-sys/Cargo.toml @@ -2,7 +2,7 @@ name = "lmdb-sys" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.7.0" +version = "0.7.1" authors = ["Dan Burkert "] license = "Apache-2.0" diff --git a/lmdb-sys/src/lib.rs b/lmdb-sys/src/lib.rs index 1e853b4..4092a53 100644 --- a/lmdb-sys/src/lib.rs +++ b/lmdb-sys/src/lib.rs @@ -1,6 +1,6 @@ #![allow(non_camel_case_types)] #![deny(warnings)] -#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.7.0")] +#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.7.1")] extern crate libc; diff --git a/src/lib.rs b/src/lib.rs index 5f78ca7..3fe40b4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![cfg_attr(test, feature(test))] #![deny(warnings)] -#![doc(html_root_url = "https://docs.rs/lmdb/0.7.0")] +#![doc(html_root_url = "https://docs.rs/lmdb/0.7.1")] extern crate libc; extern crate lmdb_sys as ffi;