]> git.sur5r.net Git - openldap/commitdiff
Bump to 0.9.9
authorHoward Chu <hyc@symas.com>
Thu, 24 Oct 2013 22:57:17 +0000 (15:57 -0700)
committerHoward Chu <hyc@symas.com>
Thu, 24 Oct 2013 22:57:17 +0000 (15:57 -0700)
libraries/liblmdb/CHANGES
libraries/liblmdb/lmdb.h

index 684effd7db54f3294ba94659c812d98b3d608016..e3d883554c21f84b1e8598e89e1f58f23b21e6d1 100644 (file)
@@ -1,5 +1,22 @@
 LMDB 0.9 Change Log
 
+LMDB 0.9.9 Release (2013/10/24)
+       Add mdb_env_get_fd()
+       Add MDB_NORDAHEAD option
+       Add MDB_NOLOCK option
+       Avoid wasting space in mdb_page_split() (ITS#7589)
+       Fix mdb_page_merge() cursor fixup (ITS#7722)
+       Fix mdb_cursor_del() on last delete (ITS#7718)
+       Fix adding WRITEMAP on existing env (ITS#7715)
+       Fixes for nested txns (ITS#7515)
+       Fix mdb_env_copy() O_DIRECT bug (ITS#7682)
+       Fix mdb_cursor_set(SET_RANGE) return code (ITS#7681)
+       Fix mdb_rebalance() cursor fixup (ITS#7701)
+       Misc code cleanup
+       Documentation
+               Note that by default, readers need write access
+
+
 LMDB 0.9.8 Release (2013/09/09)
        Allow mdb_env_set_mapsize() on an open environment
        Fix mdb_dbi_flags() (ITS#7672)
index f6d0a0af1f421e2ef4c9dbe6ec521edd7153a996..820dbc2f61bd77fb0a891ed8e729a82072133603 100644 (file)
@@ -174,7 +174,7 @@ typedef int mdb_filehandle_t;
 /** Library minor version */
 #define MDB_VERSION_MINOR      9
 /** Library patch version */
-#define MDB_VERSION_PATCH      8
+#define MDB_VERSION_PATCH      9
 
 /** Combine args a,b,c into a single integer for easy version comparisons */
 #define MDB_VERINT(a,b,c)      (((a) << 24) | ((b) << 16) | (c))
@@ -184,7 +184,7 @@ typedef int mdb_filehandle_t;
        MDB_VERINT(MDB_VERSION_MAJOR,MDB_VERSION_MINOR,MDB_VERSION_PATCH)
 
 /** The release date of this library version */
-#define MDB_VERSION_DATE       "September 9, 2013"
+#define MDB_VERSION_DATE       "October 24, 2013"
 
 /** A stringifier for the version info */
 #define MDB_VERSTR(a,b,c,d)    "MDB " #a "." #b "." #c ": (" d ")"