Skip to content

Commit 2011eb3

Browse files
committed
Release 0.9.17
1 parent e4b84e7 commit 2011eb3

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.17 Release Engineering
3+
LMDB 0.9.17 Release (2015/11/30)
44
Fix ITS#7377 catch calloc failure
55
Fix ITS#8237 regression from ITS#7589
66
Fix ITS#8238 page_split for DUPFIXED pages

libraries/liblmdb/lmdb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ typedef int mdb_filehandle_t;
191191
/** Library minor version */
192192
#define MDB_VERSION_MINOR 9
193193
/** Library patch version */
194-
#define MDB_VERSION_PATCH 16
194+
#define MDB_VERSION_PATCH 17
195195

196196
/** Combine args a,b,c into a single integer for easy version comparisons */
197197
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
@@ -201,7 +201,7 @@ typedef int mdb_filehandle_t;
201201
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
202202

203203
/** The release date of this library version */
204-
#define MDB_VERSION_DATE "August 14, 2015"
204+
#define MDB_VERSION_DATE "November 30, 2015"
205205

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

0 commit comments

Comments
 (0)