diff options
| author | Hiroshi Saito | 2017-07-27 13:51:53 +0000 |
|---|---|---|
| committer | Hiroshi Saito | 2017-07-27 13:51:53 +0000 |
| commit | 940c5438c9a64a68e178085e6bd8a429631e9311 (patch) | |
| tree | d1a7f49d3d7ebdb0ed7a710831c38af3c5f39474 | |
| parent | fc5cd3a9207795d38cb940325fc1e284286ff2f8 (diff) | |
Prep release 09.06.0410REL-09_06_0410
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | docs/release.html | 11 | ||||
| -rw-r--r-- | version.h | 4 |
3 files changed, 14 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index fa1325f..dfd3d40 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.0400, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 09.06.0410, [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 291203f..f318d3f 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,17 @@ <h1>psqlODBC release notes</h1> <hr> +<h2><a id="09.06.0410">psqlODBC 09.06.0410 Release</a></h2> +Changes:<br /> +<ol type="1"> +<li>Fix buffer truncations. The truncations occured when concatenating 'RELEASE xxxx...;' and 'SAVEPOINT xxxx....'.</li> +Per reported by Pavel Raiskup. +<li>Correct the behavior of snprintfcat() on Windows using posix_vsnprintf() instead of _vsnprintf().</li> +<li>Handle StrLen_or_IndPtr argument of SQLBindParameter() properly when StrLen_or_IndPtr doesn't point to SQL_NTS and conversions between SQLWCHAR and SQLCHAR occur.</li> +This change fixes MSACCESS errors reported by Christian Ullrich and Robert Ball. +<li>Make quote_table() and ti_quote() thread safe.This change fixes "relation does not exist".</li> +Per report and patch by Scott Beil. +</ol><br /> <h2><a id="09.06.0400">psqlODBC 09.06.0400 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.0400" +#define POSTGRESDRIVERVERSION "09.06.0410" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 9,6,04,00 +#define PG_DRVFILE_VERSION 9,6,04,10 #endif #endif |
