mirror of
https://github.com/isar/libmdbx.git
synced 2025-01-01 23:54:12 +08:00
Change-Id: I87a1a3136ea6dcdd322ab24ec1df9391aa4280b8
This commit is contained in:
parent
c9a8595ef2
commit
b980ff72cb
7
CHANGES
7
CHANGES
@ -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
2
lmdb.h
@ -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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user