# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 09.05.0300, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 09.05.0400, [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="09.05.0400">psqlODBC 09.05.0400 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li><b>Enable COMMLOG and MYLOG button.</b><br /></li>
+<li><b>Default of *level of rollback on errors* is default(statement) not transaction.</b><br /></li>
+<li><b>Fix the bug SQLGetDescFieldW or SQLColAttributeW mistakenly returns SQL_ERROR.</b><br /></li>
+<li><b>Move src/*.exe to exe/*.exe on Windows.</b><br /></li>
+Also use fc command instead of diff command on Windows. Fix a compilation error in large-object-data-at-exec-test.c regarding a type declaration in the middle of a code block.<br />
+Patch by Michael Paquier.
+<li><b>Ignore the difference between CR LF, LF and CR line break when comparing expected and result output.</b><br /></li>
+<li><b>Prior to Visual Studio 2015 Update 3, the hook functions of type PfnDliHook __pfnDliNotifyHook2 and __pfnDliFailureHook2 were non-const.</b><br /></li>
+They were made const to improve security (global, writable function pointers are bad). If for backwards compatibility you require the hooks to be writable, define the macro DELAYIMP_INSECURE_WRITABLE_HOOKS prior to including this header and provide your own non-const definition of the hooks.<br />
+The following infomation is from Dave Cramer(davecramer@gmail.com).
+<li><b>Fix a regression test some failures.</b><br /></li>
+</ol><br />
+
<h2><a id="09.05.0300">psqlODBC 09.05.0300 Release</a></h2>
Changes:<br />
<ol type="1">
!ELSE IF "$(POSTGRESDRIVERVERSION)" == "09.05.0300"
PRODUCTCODE="6621B0BF-1017-4b6d-AB9A-C1F9CFF092C8"
SUBLOC=0905
+!ELSE IF "$(POSTGRESDRIVERVERSION)" == "09.05.0400"
+PRODUCTCODE="B047E4C0-B2C9-44DE-B125-6A4DEEFD26CD"
+SUBLOC=0905
!ELSE
!MESSAGE Driver version $(POSTGRESDRIVERVERSION) is not listed in productcodes.mak
EXIT
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "09.05.0300"
+#define POSTGRESDRIVERVERSION "09.05.0400"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 9,5,03,00
+#define PG_DRVFILE_VERSION 9,5,04,00
#endif
#endif