summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi Saito2019-05-24 14:00:08 +0000
committerHiroshi Saito2019-05-24 14:00:08 +0000
commitcfd215e00f0cafe962d8995cba5708aa5d498747 (patch)
tree1a204c26d8411410f702a5333be0b61d588908c9
parent628f1cea6ffddb31c96db1658b763479c786d993 (diff)
Prep release 11.01.0000REL-11_01_0000
-rw-r--r--configure.ac2
-rw-r--r--docs/release.html19
-rw-r--r--version.h4
3 files changed, 22 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index bff7f5a..1be7341 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 11.00.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 11.01.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 e954a34..8636c77 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -9,6 +9,25 @@
<h1>psqlODBC release notes</h1>
<hr>
+<h2><a id="11.01.0000">psqlODBC 11.01.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Correct the rgbInfoValue returned by SQLGetInfo(SQL_TIMEDATE_FUNCTIONS, ..).</li>
+Pointed out by Song X. Gao.
+<li>Because the field 'relhasoids' was dropped in PG12, psqlodbc drivers would have some troubles with PG12 servers.</li>
+Report and patch by Vladimir Kokovic.
+<li>Register drivers {PostgreSQL ANSI} and {PostgreSQL Unicode} during installation on 64bit Windows so that users could use the same connection strings in both x86 and x64 environments.</li>
+Per report from Grant Shirreffs.
+<li>Correct the rgbInfoValue returned by SQLGetInfo(SQL_LIKE_ESCAPE_CLAUSE, ..).</li>
+Pointed out by Grant Shirreffs.
+<li>Fix a typo in SQLForeignKeys-ResultSet-Column. 'deferrablity' should be 'DEFERRABILITY'.</li>
+Report from Alexander Roskamp.
+<li>Correct the rgbInfoValue returned by SQLGetInfo(.., SQL_NUMERIC_FUNCTIONS(SQL_SYSTEM_FUNCTIONS or SQL_STRING_FUNCTIONS, ..).</li>
+Pointed out by Grant Shirreffs.
+<li>Bug fix: don't forget to set parameter numbers while handling escaped ODBC functions.</li>
+Report and patch by Grant Shirreiffs.
+<li>ix test_connection() in setup.c so that settings of conn_settings and pqopt option are reflected properly.</li>
+</ol><br />
<h2><a id="11.00.0000">psqlODBC 11.00.0000 Release</a></h2>
Changes:<br />
<ol type="1">
diff --git a/version.h b/version.h
index c4d8199..a625fe4 100644
--- a/version.h
+++ b/version.h
@@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "11.00.0000"
+#define POSTGRESDRIVERVERSION "11.01.0000"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 11,0,00,00
+#define PG_DRVFILE_VERSION 11,1,00,00
#endif
#endif