From: Howard Chu Date: Thu, 24 Oct 2013 22:57:17 +0000 (-0700) Subject: Bump to 0.9.9 X-Git-Tag: OPENLDAP_REL_ENG_2_4_37~1^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7449ca604ca732ad262cfd77da403968cdb9157f;p=openldap Bump to 0.9.9 --- diff --git a/libraries/liblmdb/CHANGES b/libraries/liblmdb/CHANGES index 684effd7db..e3d883554c 100644 --- a/libraries/liblmdb/CHANGES +++ b/libraries/liblmdb/CHANGES @@ -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) diff --git a/libraries/liblmdb/lmdb.h b/libraries/liblmdb/lmdb.h index f6d0a0af1f..820dbc2f61 100644 --- a/libraries/liblmdb/lmdb.h +++ b/libraries/liblmdb/lmdb.h @@ -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 ")"