Prep Ver 03.01.0000 REL-13_01_0000
authorHiroshi Saito <hiroshi@winpg.jp>
Sun, 2 May 2021 12:07:34 +0000 (21:07 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Sun, 2 May 2021 12:07:34 +0000 (21:07 +0900)
configure.ac
docs/release.html
version.h

index 090972a615b7cf33adfc81ecb708182053a36226..409487ea25ca8f6843b14c14d8a6a1a8b08ea0c9 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 13.00.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 13.01.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 44cd04c069edc2d05714f57268a465ce4cc76da2..4c8944e58f497a45c7346d6269ef2d060e719f7a 100644 (file)
@@ -9,6 +9,23 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="13.01.0000">psqlODBC 13.01.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix a bug of CC_send_query_append() when the ignore_roundtrip_time flag is on.</li>
+<li>Add a call for SQLDescribeCol() before SQLExecute() to prepare-test.</li>
+The diff of the result was reported by Mangold Fabian and will be fixed in the later commit.
+<li>Add a *update returning* test case to insertreturning regression test.</li>
+The diff of the result was reported by Patrick Cheung and will be fixed
+in the later commit.
+<li>Let SQLDescribeCol() use parsed result when the current executed result is NULL.</li>
+This change fixes the diff of prepare-test regression test reported by Mangold Fabian.
+<li>Let SQLExecute() destroy the old result first.</li>
+This change fixes the diff of insertreturning-test regression test reported by Patrick Cheung.
+<li>Forget to apply disable_convert_func flag to VARCHAR and LONGVARCHAR.</li>
+<li>Prioritize DISABLE_KEEPALIVE checkbox over the disable_keepalive bit of ExtraOptions.</li>
+<li>Format check for ExtraOptions of setup dialog.</li>
+</ol>
 <h2><a id="13.00.0000">psqlODBC 13.00.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 64255ddd247ceeabf205b5690561fdef5c7552f9..58449d146b3d44413674031b2b7dc99aaadd8518 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "13.00.0000"
+#define POSTGRESDRIVERVERSION      "13.01.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     13,0,00,00
+#define PG_DRVFILE_VERSION     13,1,00,00
 #endif
 
 #endif