File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,12 @@ LMDB 0.9 Change Log
2
2
3
3
LMDB 0.9.18 Release Engineering
4
4
Fix robust mutex detection on glibc 2.10-11 (ITS#8330)
5
+ Check for utf8_to_utf16 failures (ITS#7992)
6
+ Catch strdup failure in mdb_dbi_open
5
7
Build
6
8
Additional makefile var tweaks (ITS#8169)
9
+ Documentation
10
+ Add Getting Started page
7
11
8
12
9
13
LMDB 0.9.17 Release (2015/11/30)
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ typedef int mdb_filehandle_t;
194
194
/** Library minor version */
195
195
#define MDB_VERSION_MINOR 9
196
196
/** Library patch version */
197
- #define MDB_VERSION_PATCH 17
197
+ #define MDB_VERSION_PATCH 18
198
198
199
199
/** Combine args a,b,c into a single integer for easy version comparisons */
200
200
#define MDB_VERINT (a ,b ,c ) (((a) << 24) | ((b) << 16) | (c))
@@ -204,7 +204,7 @@ typedef int mdb_filehandle_t;
204
204
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
205
205
206
206
/** The release date of this library version */
207
- #define MDB_VERSION_DATE "November 30 , 2015"
207
+ #define MDB_VERSION_DATE "December 19 , 2015"
208
208
209
209
/** A stringifier for the version info */
210
210
#define MDB_VERSTR (a ,b ,c ,d ) "LMDB " #a "." #b "." #c ": (" d ")"
You can’t perform that action at this time.
0 commit comments