File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
LMDB 0.9 Change Log
2
2
3
- LMDB 0.9.17 Release Engineering
3
+ LMDB 0.9.17 Release (2015/11/30)
4
4
Fix ITS#7377 catch calloc failure
5
5
Fix ITS#8237 regression from ITS#7589
6
6
Fix ITS#8238 page_split for DUPFIXED pages
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ typedef int mdb_filehandle_t;
191
191
/** Library minor version */
192
192
#define MDB_VERSION_MINOR 9
193
193
/** Library patch version */
194
- #define MDB_VERSION_PATCH 16
194
+ #define MDB_VERSION_PATCH 17
195
195
196
196
/** Combine args a,b,c into a single integer for easy version comparisons */
197
197
#define MDB_VERINT (a ,b ,c ) (((a) << 24) | ((b) << 16) | (c))
@@ -201,7 +201,7 @@ typedef int mdb_filehandle_t;
201
201
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
202
202
203
203
/** The release date of this library version */
204
- #define MDB_VERSION_DATE "August 14 , 2015"
204
+ #define MDB_VERSION_DATE "November 30 , 2015"
205
205
206
206
/** A stringifier for the version info */
207
207
#define MDB_VERSTR (a ,b ,c ,d ) "LMDB " #a "." #b "." #c ": (" d ")"
You can’t perform that action at this time.
0 commit comments