From: Howard Chu Date: Fri, 13 Jun 2014 17:46:27 +0000 (-0700) Subject: Bump version to 0.9.12 X-Git-Tag: OPENLDAP_REL_ENG_2_4_40~132^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ecb71ee197e3cc080ec229bbdaa9f0d219f1a77d;p=openldap Bump version to 0.9.12 --- diff --git a/libraries/liblmdb/CHANGES b/libraries/liblmdb/CHANGES index 95bf833c76..b24ab18398 100644 --- a/libraries/liblmdb/CHANGES +++ b/libraries/liblmdb/CHANGES @@ -1,5 +1,18 @@ LMDB 0.9 Change Log +LMDB 0.9.12 Release (2014/06/13) + Fix MDB_GET_BOTH regression (ITS#7875,#7681) + Fix MDB_MULTIPLE writing multiple keys (ITS#7834) + Fix mdb_rebalance (ITS#7829) + Fix mdb_page_split (ITS#7815) + Fix md_entries count (ITS#7861,#7828,#7793) + Fix MDB_CURRENT (ITS#7793) + Fix possible crash on Windows DLL detach + Misc code cleanup + Documentation + mdb_cursor_put: cursor moves on error (ITS#7771) + + LMDB 0.9.11 Release (2014/01/15) Add mdb_env_set_assert() (ITS#7775) Fix: invalidate txn on page allocation errors (ITS#7377) diff --git a/libraries/liblmdb/lmdb.h b/libraries/liblmdb/lmdb.h index 7a38a29cbb..95ca1f05f1 100644 --- a/libraries/liblmdb/lmdb.h +++ b/libraries/liblmdb/lmdb.h @@ -119,7 +119,7 @@ * * @author Howard Chu, Symas Corporation. * - * @copyright Copyright 2011-2013 Howard Chu, Symas Corp. All rights reserved. + * @copyright Copyright 2011-2014 Howard Chu, Symas Corp. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted only as authorized by the OpenLDAP @@ -184,7 +184,7 @@ typedef int mdb_filehandle_t; /** Library minor version */ #define MDB_VERSION_MINOR 9 /** Library patch version */ -#define MDB_VERSION_PATCH 11 +#define MDB_VERSION_PATCH 12 /** Combine args a,b,c into a single integer for easy version comparisons */ #define MDB_VERINT(a,b,c) (((a) << 24) | ((b) << 16) | (c)) @@ -194,7 +194,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 "January 15, 2014" +#define MDB_VERSION_DATE "June 13, 2014" /** A stringifier for the version info */ #define MDB_VERSTR(a,b,c,d) "MDB " #a "." #b "." #c ": (" d ")"