Skip to content

Commit e8760b4

Browse files
committed
ITS#7992 cleanup, new docs, mdb_dbi_open cleanup
1 parent 3fd0d5f commit e8760b4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

libraries/liblmdb/CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ LMDB 0.9 Change Log
22

33
LMDB 0.9.18 Release Engineering
44
Fix robust mutex detection on glibc 2.10-11 (ITS#8330)
5+
Check for utf8_to_utf16 failures (ITS#7992)
6+
Catch strdup failure in mdb_dbi_open
57
Build
68
Additional makefile var tweaks (ITS#8169)
9+
Documentation
10+
Add Getting Started page
711

812

913
LMDB 0.9.17 Release (2015/11/30)

libraries/liblmdb/lmdb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ typedef int mdb_filehandle_t;
194194
/** Library minor version */
195195
#define MDB_VERSION_MINOR 9
196196
/** Library patch version */
197-
#define MDB_VERSION_PATCH 17
197+
#define MDB_VERSION_PATCH 18
198198

199199
/** Combine args a,b,c into a single integer for easy version comparisons */
200200
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
@@ -204,7 +204,7 @@ typedef int mdb_filehandle_t;
204204
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
205205

206206
/** The release date of this library version */
207-
#define MDB_VERSION_DATE "November 30, 2015"
207+
#define MDB_VERSION_DATE "December 19, 2015"
208208

209209
/** A stringifier for the version info */
210210
#define MDB_VERSTR(a,b,c,d) "LMDB " #a "." #b "." #c ": (" d ")"

0 commit comments

Comments
 (0)