Prep release 11.01.0000 REL-11_01_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Fri, 24 May 2019 14:00:08 +0000 (23:00 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Fri, 24 May 2019 14:00:08 +0000 (23:00 +0900)
configure.ac
docs/release.html
version.h

index bff7f5a87de53a7415943412d662cb9f9110eb79..1be73419abf37ec4223c09ad95c95d6968aa64ec 100644 (file)
@@ -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
index e954a34c67f70b58e5f6c81b6ce9d20c3eab4a51..8636c7750edd9a199fd7cf0e5aa350fe6632d93a 100644 (file)
@@ -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">
index c4d819917ecf362ffbf86f1042ab4f3d31657642..a625fe40d255acbdebe593e860fb792c5afe5173 100644 (file)
--- a/version.h
+++ b/version.h
  * 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