Prep release 10.01.0000
authorHiroshi Saito <hiroshi@winpg.jp>
Wed, 27 Dec 2017 13:16:28 +0000 (22:16 +0900)
committerHiroshi Saito <hiroshi@winpg.jp>
Wed, 27 Dec 2017 13:16:28 +0000 (22:16 +0900)
configure.ac
docs/release.html
version.h

index 7c5c321f9f7f90a10a2253ab946682c4ff262b1d..ba761ee223cf00878264e1f69fe38e56eb94d2d2 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 10.00.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 10.01.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 55666717318352b0aeb96ccc9d3a168ce121d993..b08cb83188bb0158acc6ff6f85b9ee86dd2d99e0 100644 (file)
@@ -9,6 +9,19 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="10.01.0000">psqlODBC 10.01.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Call Get-VSSetupInstance to detect Visual Studio installations whose version >= 15 when VSSetup module is available.</li>
+<li>Review the handling of @@IDENTITY when a column's default is nextval(a_sequence) but the column isn't a serial. Unfortunately the function pg_get_serial_sequence() doesn't work for sequences which aren't serial type.</li>
+<li>Add add an option -NoPDB to buildInstallers.ps1.</li>
+The switch option can be specified so as to exclude PDB files from the installers.
+<li>Fix a bug in pgdebug_realloc().</li>
+<li>Free any data at exec params before the statement is executed again or the next set of parameters is processed. If not, then there will be a memory leak when the next SQLParamData/SQLPutData is called.>/li>
+Per report from Mihai Giurgeanu
+<li>Review the level of MYLOG, QLOG.</li>
+Divide *level 1(detail)* log into *level 1(tuple level)* log and *level 2(detail)* log.
+</ol><br />
 <h2><a id="10.00.0000">psqlODBC 10.00.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 112af9667815dbbd320d4ff2f7a98e9b540db594..486a73a3451c4811cb73b50bf20e792c9ce0c07a 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "10.00.0000"
+#define POSTGRESDRIVERVERSION      "10.01.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     10,0,00,00
+#define PG_DRVFILE_VERSION     10,1,00,00
 #endif
 
 #endif