diff options
| author | Hiroshi Saito | 2017-03-10 15:14:15 +0000 |
|---|---|---|
| committer | Hiroshi Saito | 2017-03-10 15:14:15 +0000 |
| commit | c884408489dbabfa66f81e33eb1e610d7026b0a5 (patch) | |
| tree | 3f0ecf844e35f44bac546439337b23930b99d51b | |
| parent | 4b871bc7d11248138554068b2458fcbaf481161b (diff) | |
Prep release 09.06.0200REL-09_06_0200
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | docs/release.html | 20 | ||||
| -rw-r--r-- | 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 @@ <h1>psqlODBC release notes</h1> <hr> +<h2><a id="09.06.0200">psqlODBC 09.06.0200 Release</a></h2> +Changes:<br /> +<ol type="1"> +<li><b>Start transactons first before calling SQLEndTran().</b><br /></li> +<li><b>The failure of libpq_bind_exec() which returns NULL doesn't mean a FATAL error. + Also make a check for disconnected connections.</b><br /></li> +<li><b>Handle output parameters properly in build_libpq_bind_params.Also handle return values properly.</b><br /></li> +<li><b>Make check of connection lost.</b><br /></li> +<li><b>Revise recent lost connection check.</b><br /></li> +Check the lost connection<br /> +<ol type="a"> +<li>at the beginning of ODBC APIs.<br /></li> +<li>at the beginning of FE-BE communications using extended protocol.<br /></li> +</ol> +<li><b>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. +</b><br /></li> +</ol><br /> <h2><a id="09.06.0100">psqlODBC 09.06.0100 Release</a></h2> Changes:<br /> <ol type="1"> @@ -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 |
