diff --git a/configure.ac b/configure.ac
index 16964c08..31d65307 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 18.00.0001, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 18.00.0002, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
diff --git a/docs/release.html b/docs/release.html
index 8666ddaa..c4b9c454 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -9,6 +9,61 @@
psqlODBC release notes
+
+
+ Changes:
+ -
+ Use signed type for error status (#193)
+
+ -
+ Redact sensitive connection parameters in driver logs
+
+ -
+ Fix double-free / heap corruption during SQLDisconnect cleanup (#189, #190)
+
+ -
+ Clear PGresults from per-query rollback (#188)
+
+ -
+ Validate UTF-16 surrogate pairs before combining (#187)
+
+ -
+ Pass SQLSetDescRec field values correctly (#186)
+
+ -
+ Avoid reading before leading string literals (#185)
+
+ -
+ Detach freed app descriptors from statements (#183)
+
+ -
+ Reject invalid SQLPutData lengths (#182)
+
+ -
+ Reject overlong cursor names (#178)
+
+ -
+ Fix version reporting (#181)
+
+ -
+ Handle ARD bookmark allocation failure (#179)
+
+ -
+ Validate percent escapes before decoding (#175)
+
+ -
+ Avoid reading past conn_settings end (#176)
+
+ -
+ Fix stack buffer overflow in getPrecisionPart() (#173, #174)
+
+ -
+ Fix SQLPrimaryKeys to exclude INCLUDE columns from results (#171)
+
+ -
+ Use openssl 3.5.5 (#169)
+
+
Changes:
diff --git a/version.h b/version.h
index 0ba41610..7c601ccb 100644
--- a/version.h
+++ b/version.h
@@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "18.00.0001"
+#define POSTGRESDRIVERVERSION "18.00.0002"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 18,0,00,01
+#define PG_DRVFILE_VERSION 18,0,00,02
#endif
#endif