diff --git a/configure.ac b/configure.ac
index 31d65307..9e151744 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.0002, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 18.00.0003, [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 c4b9c454..89b4accb 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -10,6 +10,39 @@
psqlODBC release notes
+
+ Changes:
+ -
+ Report SQLSTATE 22003 for out-of-range integer conversions instead of silently returning the wrapped low bits (#207, #210, #211)
+
+ -
+ Fix statement-level rollback (Protocol=7.4-2) discarding the whole transaction on a syntax error (#203, #204)
+
+ -
+ Don't wrap internal queries in a savepoint at rollback-on-error level 0 (Protocol=7.4-0), which lost transactions on servers without SAVEPOINT support (#208, #209)
+
+ -
+ Redact the database password (ODBC PWD and libpq pqopt password) in debug logs (#206)
+
+ -
+ Fix hang on COPY ... FROM STDIN / TO STDOUT: report it as unsupported and keep the connection usable (#202)
+
+ -
+ Fix 'infinity'/'-infinity' dates silently returned as today's date (#199)
+
+ -
+ Document connection string escaping rules (#140, #197)
+
+ -
+ Resolve Visual Studio 2026 (v18) build issues and circular dependencies (#201)
+
+ -
+ Add Windows on Arm (ARM64) CI build and regression testing (#196)
+
+ -
+ Build Windows OpenSSL 3.5.8 in CI (#205)
+
+
Changes:
-
diff --git a/version.h b/version.h
index 7c601ccb..9d560a33 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.0002"
+#define POSTGRESDRIVERVERSION "18.00.0003"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 18,0,00,02
+#define PG_DRVFILE_VERSION 18,0,00,03
#endif
#endif