Skip to content
This repository was archived by the owner on Sep 13, 2023. It is now read-only.

Commit 4202c59

Browse files
authored
Merge pull request #26 from mykmelez/update-lmdb-to-0.9.23
update LMDB to latest stable release version 0.9.23
2 parents 6ab0155 + 7456a07 commit 4202c59

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

lmdb-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22

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

lmdb-sys/src/lib.rs

+1-1
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.8.0")]
3+
#![doc(html_root_url = "https://docs.rs/lmdb-rkv-sys/0.8.1")]
44

55
extern crate libc;
66

src/lib.rs

+1-1
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-rkv/0.11.0")]
6+
#![doc(html_root_url = "https://docs.rs/lmdb-rkv/0.11.1")]
77

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

0 commit comments

Comments
 (0)