# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 10.01.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 10.02.0000, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
<body bgcolor="#ffffff" text="#000000" link="#ff0000" vlink="#a00000" alink="#0000ff">
+<h1>psqlODBC release notes</h1>
+<hr>
+<h2><a id="10.02.0000">psqlODBC 10.02.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>It's safer to call setlocale(LC_CTYPE, "") than calling setlocale(LC_ALL, "").</li>
+Report and patch by Mario De Frutos.
+<li>Avoid replacing effective notice messages.</li>
+Report from Wolfgang Apolinarski. <br />
+Patch by Clemens Ladisch.
+<li>Handle MALLOC/REALLOC errors while fetching tuples more effectively.</li>
+Per report from Haruka Takatsuka.
+<li>Make SQLSetPos(SQL_DELETE/SQL_REFRESH) more effective.
+Because queries calling currtid(2) like<br />
+select .. from .. where ctid=currtid2(.., ..)<br />
+cause Seq Scan, their execution may be very slow.<br />
+It is better to execute queries using subqueries like<br />
+select .. from .. where ctid=(select currtid2(.., ..))<br />
+because they cause Tid Scan.<br />
+Report and changes by Tsunakawa Takayuki.
+<li>Fix a crash bug in AddDeleted().</li>
+Report and patch by Takayuki Tsunakawa.
+</ol><br />
+
<h1>psqlODBC release notes</h1>
<hr>
<h2><a id="10.01.0000">psqlODBC 10.01.0000 Release</a></h2>
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "10.01.0000"
+#define POSTGRESDRIVERVERSION "10.02.0000"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 10,1,00,00
+#define PG_DRVFILE_VERSION 10,2,00,00
#endif
#endif