Skip to content

Commit 7449ca6

Browse files
committed
Bump to 0.9.9
1 parent b86f08e commit 7449ca6

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

libraries/liblmdb/CHANGES

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
LMDB 0.9 Change Log
22

3+
LMDB 0.9.9 Release (2013/10/24)
4+
Add mdb_env_get_fd()
5+
Add MDB_NORDAHEAD option
6+
Add MDB_NOLOCK option
7+
Avoid wasting space in mdb_page_split() (ITS#7589)
8+
Fix mdb_page_merge() cursor fixup (ITS#7722)
9+
Fix mdb_cursor_del() on last delete (ITS#7718)
10+
Fix adding WRITEMAP on existing env (ITS#7715)
11+
Fixes for nested txns (ITS#7515)
12+
Fix mdb_env_copy() O_DIRECT bug (ITS#7682)
13+
Fix mdb_cursor_set(SET_RANGE) return code (ITS#7681)
14+
Fix mdb_rebalance() cursor fixup (ITS#7701)
15+
Misc code cleanup
16+
Documentation
17+
Note that by default, readers need write access
18+
19+
320
LMDB 0.9.8 Release (2013/09/09)
421
Allow mdb_env_set_mapsize() on an open environment
522
Fix mdb_dbi_flags() (ITS#7672)

libraries/liblmdb/lmdb.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ typedef int mdb_filehandle_t;
174174
/** Library minor version */
175175
#define MDB_VERSION_MINOR 9
176176
/** Library patch version */
177-
#define MDB_VERSION_PATCH 8
177+
#define MDB_VERSION_PATCH 9
178178

179179
/** Combine args a,b,c into a single integer for easy version comparisons */
180180
#define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c))
@@ -184,7 +184,7 @@ typedef int mdb_filehandle_t;
184184
MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
185185

186186
/** The release date of this library version */
187-
#define MDB_VERSION_DATE "September 9, 2013"
187+
#define MDB_VERSION_DATE "October 24, 2013"
188188

189189
/** A stringifier for the version info */
190190
#define MDB_VERSTR(a,b,c,d) "MDB " #a "." #b "." #c ": (" d ")"

0 commit comments

Comments
 (0)