From 4e9da07fb5c1f260504ef11553788d7eebe6c3e5 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Mon, 24 Nov 2025 12:19:23 -0500 Subject: [PATCH] prepare for release 17.00.0007 --- configure.ac | 2 +- connection.c | 4 ++-- docs/release.html | 22 +++++++++++++++++++++- version.h | 4 ++-- 4 files changed, 26 insertions(+), 6 deletions(-) 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


    -

    psqlODBC 17.00.0006 Release

    +

    psqlODBC 17.00.0007 Release

    Changes:
  1. + Fix: GetDescRec on big-endian architectures PR #130 + Author: Christoph Berg +
  2. +
  3. + Refactor: use operator(pg_catalog.operator) to fully qualify the operator PR #139 + Author: Dave Cramer +
  4. +
  5. + Fix: Make sure the null terminator len_for_wcs_term is included in the decision to realloc PR #145 + Author: Mark Maker +
  6. +
  7. + 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 +
  8. + +

    psqlODBC 17.00.0006 Release

    + Changes:
    +
  9. Refactor: Comprehensive variable naming improvements across the codebase PR #125 Author: Dave Cramer
  10. +
  11. 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