lmdb: 0.9.16, updated CHANGES for ITS#8181, #8190, #8200.

Change-Id: I87a1a3136ea6dcdd322ab24ec1df9391aa4280b8
This commit is contained in:
Howard Chu 2015-07-28 15:20:43 +01:00 committed by Leo Yuriev
parent c9a8595ef2
commit b980ff72cb
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
LMDB 0.9 Change Log
LMDB 0.9.15 Release Engineering
LMDB 0.9.16 Release Engineering
Fix cursor EOF bug (ITS#8190)
Fix handling of subDB records (ITS#8181)
Fix mdb_midl_shrink() usage (ITS#8200)
LMDB 0.9.15 Release (2015/06/19)
Fix txn init (ITS#7961,#7987)
Fix MDB_PREV_DUP (ITS#7955,#7671)
Fix compact of empty env (ITS#7956)

2
lmdb.h
View File

@ -180,7 +180,7 @@ typedef int mdb_filehandle_t;
/** Library minor version */
#define MDB_VERSION_MINOR 9
/** Library patch version */
#define MDB_VERSION_PATCH 15
#define MDB_VERSION_PATCH 16
/** Combine args a,b,c into a single integer for easy version comparisons */
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))