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.16 Release Engineering
3
+ LMDB 0.9.16 Release (2015/08/14)
4
4
Fix cursor EOF bug (ITS#8190)
5
5
Fix handling of subDB records (ITS#8181)
6
6
Fix mdb_midl_shrink() usage (ITS#8200)
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ typedef int mdb_filehandle_t;
184
184
/** Library minor version */
185
185
#define MDB_VERSION_MINOR 9
186
186
/** Library patch version */
187
- #define MDB_VERSION_PATCH 15
187
+ #define MDB_VERSION_PATCH 16
188
188
189
189
/** Combine args a,b,c into a single integer for easy version comparisons */
190
190
#define MDB_VERINT (a ,b ,c ) (((a) << 24) | ((b) << 16) | (c))
@@ -194,7 +194,7 @@ typedef int mdb_filehandle_t;
194
194
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
195
195
196
196
/** The release date of this library version */
197
- #define MDB_VERSION_DATE "June 19 , 2015"
197
+ #define MDB_VERSION_DATE "August 14 , 2015"
198
198
199
199
/** A stringifier for the version info */
200
200
#define MDB_VERSTR (a ,b ,c ,d ) "LMDB " #a "." #b "." #c ": (" d ")"
You can’t perform that action at this time.
0 commit comments