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)
 
  *
  *     @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
 /** 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))
        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 ")"