Skip to content

Commit 90e8880

Browse files
committed
0.8.0
1 parent 5a70b18 commit 90e8880

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "lmdb"
44
# NB: When modifying, also modify html_root_url in lib.rs
5-
version = "0.7.2"
5+
version = "0.8.0"
66
authors = ["Dan Burkert <[email protected]>"]
77
license = "Apache-2.0"
88

@@ -25,7 +25,7 @@ members = [
2525
[dependencies]
2626
bitflags = "1"
2727
libc = "0.2"
28-
lmdb-sys = { version = "0.7.2", path = "lmdb-sys" }
28+
lmdb-sys = { version = "0.8.0", path = "lmdb-sys" }
2929

3030
[dev-dependencies]
3131
rand = "0.4"

lmdb-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "lmdb-sys"
44
# NB: When modifying, also modify html_root_url in lib.rs
5-
version = "0.7.2"
5+
version = "0.8.0"
66
authors = ["Dan Burkert <[email protected]>"]
77
license = "Apache-2.0"
88

lmdb-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(non_camel_case_types)]
22
#![deny(warnings)]
3-
#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.7.2")]
3+
#![doc(html_root_url = "https://docs.rs/lmdb-sys/0.8.0")]
44

55
extern crate libc;
66

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
#![cfg_attr(test, feature(test))]
55
#![deny(missing_docs)]
6-
#![doc(html_root_url = "https://docs.rs/lmdb/0.7.2")]
6+
#![doc(html_root_url = "https://docs.rs/lmdb/0.8.0")]
77

88
extern crate libc;
99
extern crate lmdb_sys as ffi;

0 commit comments

Comments
 (0)