From 67d627cb04453d16f1e600c65cab34068e0b60c2 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Wed, 19 Dec 2018 14:15:23 -0800 Subject: [PATCH] update minor version for breaking change in #14 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3db17b0..495a2ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "lmdb-rkv" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.10.0" +version = "0.11.0" authors = ["Dan Burkert "] license = "Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index b7147b2..3d2d406 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ #![cfg_attr(test, feature(test))] #![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.10.0")] +#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.11.0")] extern crate libc; extern crate lmdb_sys as ffi;