]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Update for LMDB 0.9.35 release LMDB_0.9.35
authorQuanah Gibson-Mount <quanah@openldap.org>
Thu, 29 Jan 2026 21:51:48 +0000 (21:51 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Thu, 29 Jan 2026 21:51:48 +0000 (21:51 +0000)
libraries/liblmdb/lmdb.h

index a206cf756df0c73568e19623520fc244c9b30735..6a1d1563ced1256ca942198be67f600ca93f9fc4 100644 (file)
@@ -200,7 +200,7 @@ typedef int mdb_filehandle_t;
 /** Library minor version */
 #define MDB_VERSION_MINOR      9
 /** Library patch version */
-#define MDB_VERSION_PATCH      34
+#define MDB_VERSION_PATCH      35
 
 /** Combine args a,b,c into a single integer for easy version comparisons */
 #define MDB_VERINT(a,b,c)      (((a) << 24) | ((b) << 16) | (c))
@@ -210,7 +210,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       "Jan 26, 2026"
+#define MDB_VERSION_DATE       "Jan 27, 2026"
 
 /** A stringifier for the version info */
 #define MDB_VERSTR(a,b,c,d)    "LMDB " #a "." #b "." #c ": (" d ")"