# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 10.03.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 11.00.0000, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
<h1>psqlODBC release notes</h1>
<hr>
+<h2><a id="11.00.0000">psqlODBC 11.00.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Remove obsolete maps pointed out.</li>
+POWER -> pow, CONCAT -> textcat, LEFT -> ltrunc, RIGHT -> rtrunc<br />
+Patch by Daniel Cory.
+<li>Remove connSettings option and/or pqopt option from the OutConnectionString parameter of SQLDriverConnect() when each option doesn't exist in InConnectionString parameter.</li>
+<li>The parameters should be cast because parameters of concat() function are variadic "any".</li>
+<li>Unbuffered-IO in Windows is incredibly slow. Instead call fflush() after fprintf().</li>
+<li>Add an alias DX of *Database* keyword for connection strings to aviod the use of "database" keyword which has a special meaning in some apps or middlewares.</li>
+<li>numeric items without precision are unlimited and there's no natural map between SQL Data types.</li>
+Add an option *Numeric(without precision) as*.
+<li>Fix a bug that SQLSpecialColumns() returns oid/xmin incorrectly when a table does not exist.</li>
+Patch by Quan Zongliang.
+</ol><br />
<h2><a id="10.03.0000">psqlODBC 10.03.0000 Release</a></h2>
Changes:<br />
<ol type="1">
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "10.03.0000"
+#define POSTGRESDRIVERVERSION "11.00.0000"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 10,3,00,00
+#define PG_DRVFILE_VERSION 11,0,00,00
#endif
#endif