From c884408489dbabfa66f81e33eb1e610d7026b0a5 Mon Sep 17 00:00:00 2001 From: Hiroshi Saito Date: Sat, 11 Mar 2017 00:14:15 +0900 Subject: Prep release 09.06.0200 --- configure.ac | 2 +- docs/release.html | 20 ++++++++++++++++++++ version.h | 4 ++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 7dd795e..95dc800 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(psqlodbc, 09.06.0100, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 09.06.0200, [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 ecbc670..4a22c63 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,26 @@

psqlODBC release notes


+

psqlODBC 09.06.0200 Release

+Changes:
+
    +
  1. Start transactons first before calling SQLEndTran().
  2. +
  3. The failure of libpq_bind_exec() which returns NULL doesn't mean a FATAL error. + Also make a check for disconnected connections.
  4. +
  5. Handle output parameters properly in build_libpq_bind_params.Also handle return values properly.
  6. +
  7. Make check of connection lost.
  8. +
  9. Revise recent lost connection check.
  10. +Check the lost connection
    +
      +
    1. at the beginning of ODBC APIs.
    2. +
    3. at the beginning of FE-BE communications using extended protocol.
    4. +
    +
  11. Stop specifying parameter datatype oids in parse message. Unfortunately it is inflexible + and rather harmful. Though I don't know if it has much meaning, use cast instead just in order + to keep regression test results. It's not necessary to cast any more the 2nd parameter of + {call a_b_c_d_e(?, ?, ?, ?, ?)} in odbc-escapes-test. +
  12. +

psqlODBC 09.06.0100 Release

Changes:
    diff --git a/version.h b/version.h index 26bf58d..8f172d5 100644 --- a/version.h +++ b/version.h @@ -14,13 +14,13 @@ * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj. */ #ifndef POSTGRESDRIVERVERSION -#define POSTGRESDRIVERVERSION "09.06.0100" +#define POSTGRESDRIVERVERSION "09.06.0200" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 9,6,01,00 +#define PG_DRVFILE_VERSION 9,6,02,00 #endif #endif -- cgit v1.2.3