diff --git a/configure.ac b/configure.ac
index bb6f78c..103a51f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 17.00.0005, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 17.00.0006, [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 d29249e..fd3476f 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -10,7 +10,48 @@
psqlODBC release notes
-
+
+ Changes:
+ -
+ Refactor: Comprehensive variable naming improvements across the codebase PR #125
+ Author: Dave Cramer
+
+ -
+ Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus)
+ Author: Dave Cramer
+
+ -
+ Enhancement: Improved StatementClass structure variable names for clarity (e.g., hdbc → connectionHandle, curres → currentResult)
+ Author: Dave Cramer
+
+ -
+ Enhancement: Updated QResultClass structure variables with more descriptive names (e.g., rstatus → resultStatus, num_fields → columnCount)
+ Author: Dave Cramer
+
+ -
+ Documentation: Updated inline comments to reflect new variable naming conventions
+ Author: Dave Cramer
+
+ -
+ Maintenance: Removed unnecessary prefixes from variable names (e.g., __error_message → errorMessage)
+ Author: Dave Cramer
+
+ -
+ Enhancement: Replaced abbreviations with full words for better code readability
+ Author: Dave Cramer
+
+ -
+ Maintenance: Updated all references to renamed variables throughout the codebase
+ Author: Dave Cramer
+
+ -
+ Documentation: Added comprehensive variable mapping documentation for future reference
+ Author: Dave Cramer
+
+
+
+
+
Changes:
-
Security: fix possible int overflow PR #121 fixes issue #119
diff --git a/version.h b/version.h
index 5d2dd36..45eb184 100644
--- a/version.h
+++ b/version.h
@@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "17.00.0005"
+#define POSTGRESDRIVERVERSION "17.00.0006"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 17,0,00,05
+#define PG_DRVFILE_VERSION 17,0,00,06
#endif
#endif