]> git.sur5r.net Git - openldap/commitdiff
Bump version to 0.9.12
authorHoward Chu <hyc@symas.com>
Fri, 13 Jun 2014 17:46:27 +0000 (10:46 -0700)
committerHoward Chu <hyc@symas.com>
Fri, 13 Jun 2014 17:46:27 +0000 (10:46 -0700)
libraries/liblmdb/CHANGES
libraries/liblmdb/lmdb.h

index 95bf833c761d457d15c568f51c9fe5b43b1feb00..b24ab183981c8dc3bd4a03a66d63a1c97fbd1c18 100644 (file)
@@ -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)
index 7a38a29cbbd31676732bb35d20be45473c581ae1..95ca1f05f15f533d2a24d96f516e1043a67e246a 100644 (file)
  *
  *     @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 ")"