Prep release 12.01.0000 REL-12_01_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Tue, 7 Jan 2020 13:26:12 +0000 (22:26 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Tue, 7 Jan 2020 13:26:12 +0000 (22:26 +0900)
configure.ac
docs/release.html
readme.txt
version.h

index 241c1275ca28f828d2513d76105728c5072a81dd..7765e5d796e6303933a8f2a7668237e651b95ed4 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 12.00.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 12.01.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 896e6cae9fcf2fb08097812dbc17a304e747eb67..27d4f17b538642b702d1dd22b731891d70b88ee6 100644 (file)
@@ -9,6 +9,23 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="12.01.0000">psqlODBC 12.01.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix result-conversions regression test.</li>
+<ol type="a">
+<li>Remove tests for abstime type because the type was removed in PG12.</li>
+<li>Update results for PG12's new floating point output format.</li>
+</ol>
+<li>Fix the bug that causes Error : A parameter cannot be found that matches parameter name\81ene'.</li>
+<ol type="a">
+<li>Check BuildResult(the result of drivers build) before building installers.</li>
+<li>Enclose the command part * Find_VSDir $vc_ver * with parentheses so that
+the subsequent * -ne "" * isn't considered to be a parameter.</li>
+</ol>
+<li>Cope with the removal of pg_class.relhasoids in PG12 correctly when retrieving updatable cursors.</li>
+</ol>
+<hr>
 <h2><a id="12.00.0000">psqlODBC 12.00.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 6240c0414ad965516961d2f94e25452bec8e1d67..277d9b3c8994083778e2b0c44075cb61fb0d7520 100644 (file)
@@ -5,7 +5,7 @@
 
 
   Copyright (C) 1998          Insight Distribution Systems
-  Copyright (C) 1998 - 2013   The PostgreSQL Global Development Group
+  Copyright (C) 1998 - 2020   The PostgreSQL Global Development Group
 
   Multibyte support was added by Sankyo Unyu Service, (C) 2001.
 
index 51ea7efafa98ddcc5139c7e7c67e46af2c7bcf8f..0c8106b455fb4981099850ba8ea0d4376a622a6d 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "12.00.0000"
+#define POSTGRESDRIVERVERSION      "12.01.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     12,0,00,00
+#define PG_DRVFILE_VERSION     12,1,00,00
 #endif
 
 #endif