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


    -

    psqlODBC 17.00.0005 Release

    +

    psqlODBC 17.00.0006 Release

    + Changes:
    +
  1. + Refactor: Comprehensive variable naming improvements across the codebase PR #125 + Author: Dave Cramer +
  2. +
  3. + Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus) + Author: Dave Cramer +
  4. +
  5. + Enhancement: Improved StatementClass structure variable names for clarity (e.g., hdbc → connectionHandle, curres → currentResult) + Author: Dave Cramer +
  6. +
  7. + Enhancement: Updated QResultClass structure variables with more descriptive names (e.g., rstatus → resultStatus, num_fields → columnCount) + Author: Dave Cramer +
  8. +
  9. + Documentation: Updated inline comments to reflect new variable naming conventions + Author: Dave Cramer +
  10. +
  11. + Maintenance: Removed unnecessary prefixes from variable names (e.g., __error_message → errorMessage) + Author: Dave Cramer +
  12. +
  13. + Enhancement: Replaced abbreviations with full words for better code readability + Author: Dave Cramer +
  14. +
  15. + Maintenance: Updated all references to renamed variables throughout the codebase + Author: Dave Cramer +
  16. +
  17. + Documentation: Added comprehensive variable mapping documentation for future reference + Author: Dave Cramer +
  18. +
+ +
    +

    psqlODBC 17.00.0005 Release

    Changes:
  1. 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