diff --git a/configure.ac b/configure.ac
index 103a51f7..8bcd10f1 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.0006, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 17.00.0007, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
diff --git a/connection.c b/connection.c
index 8cb4d464..57f419c1 100644
--- a/connection.c
+++ b/connection.c
@@ -1094,7 +1094,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)
if (ret = LIBPQ_connect(self), ret <= 0)
return ret;
-
+
/* Check current DateStyle first */
res = CC_send_query(self, "SHOW DateStyle;", NULL, READ_ONLY_QUERY, NULL);
if (QR_command_maybe_successful(res))
@@ -1116,7 +1116,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)
}
}
}
-
+
if (QR_command_maybe_successful(res))
{
handle_show_results(res);
diff --git a/docs/release.html b/docs/release.html
index fd3476fb..aca5c89b 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -10,12 +10,32 @@
psqlODBC release notes
-
+
Changes:
-
+ Fix: GetDescRec on big-endian architectures PR #130
+ Author: Christoph Berg
+
+ -
+ Refactor: use operator(pg_catalog.operator) to fully qualify the operator PR #139
+ Author: Dave Cramer
+
+ -
+ Fix: Make sure the null terminator len_for_wcs_term is included in the decision to realloc PR #145
+ Author: Mark Maker
+
+ -
+ Refactor: check the datestyle before setting it, if it is different than ISO change it, otherwise leave it as is PR #144
+ Author: Dave Cramer
+
+
+
+ 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
diff --git a/version.h b/version.h
index 45eb184a..487dc989 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.0006"
+#define POSTGRESDRIVERVERSION "17.00.0007"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 17,0,00,06
+#define PG_DRVFILE_VERSION 17,0,00,07
#endif
#endif