From 2cdf6c057605682b126e6ac54a94eeec5d99a318 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 19 Mar 2026 07:59:24 -0400 Subject: [PATCH 1/2] fix version number --- configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 18ecf132..dc6f0619 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.0000, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 17.00.0009, [pgsql-odbc@postgresql.org]) AC_PREREQ(2.57) AC_CONFIG_AUX_DIR(config) AM_INIT_AUTOMAKE @@ -28,11 +28,9 @@ AC_CHECK_SIZEOF([bool], [], #include #endif]) -AC_CHECK_HEADER_STDBOOL() - dnl We use if we have it and it declares type bool as having dnl size 1. Otherwise, c.h will fall back to declaring bool as unsigned char. -if test "$ac_cv_header_stdbool_h" = yes && test "$ac_cv_sizeof_bool" = 1; then +if test "$ac_cv_header_stdbool_h" = yes -a "$ac_cv_sizeof_bool" = 1; then AC_DEFINE([PG_USE_STDBOOL], 1, [Define to 1 to use to define type bool.]) fi From c3b50ad3468711ca43bd1b8858eb05f7f1681920 Mon Sep 17 00:00:00 2001 From: Dave Cramer Date: Thu, 19 Mar 2026 09:13:19 -0400 Subject: [PATCH 2/2] release version 18.00.0000, no changes from 17.00.0009 --- configure.ac | 2 +- docs/release.html | 7 +++++++ version.h | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index dc6f0619..d97ff23b 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.0009, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 18.00.0000, [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 7aa2b551..afb6d22d 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,13 @@

psqlODBC release notes


+
    +

    psqlODBC 18.00.0000 Release

    + Changes:
    +
  1. + No changes from 17.00.0009 +
  2. +

    psqlODBC 17.00.0009 Release

    Changes:
    diff --git a/version.h b/version.h index d1b097b1..ec6f7825 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.0009" +#define POSTGRESDRIVERVERSION "18.00.0000" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 17,0,00,09 +#define PG_DRVFILE_VERSION 18,0,00,00 #endif #endif