Skip to content

Commit 5d67c6a

Browse files
committed
Release 0.9.16
1 parent d139771 commit 5d67c6a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libraries/liblmdb/CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
LMDB 0.9 Change Log
22

3-
LMDB 0.9.16 Release Engineering
3+
LMDB 0.9.16 Release (2015/08/14)
44
Fix cursor EOF bug (ITS#8190)
55
Fix handling of subDB records (ITS#8181)
66
Fix mdb_midl_shrink() usage (ITS#8200)

libraries/liblmdb/lmdb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ typedef int mdb_filehandle_t;
184184
/** Library minor version */
185185
#define MDB_VERSION_MINOR 9
186186
/** Library patch version */
187-
#define MDB_VERSION_PATCH 15
187+
#define MDB_VERSION_PATCH 16
188188

189189
/** Combine args a,b,c into a single integer for easy version comparisons */
190190
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
@@ -194,7 +194,7 @@ typedef int mdb_filehandle_t;
194194
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
195195

196196
/** The release date of this library version */
197-
#define MDB_VERSION_DATE "June 19, 2015"
197+
#define MDB_VERSION_DATE "August 14, 2015"
198198

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

0 commit comments

Comments
 (0)