summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi Saito2017-12-27 13:16:28 +0000
committerHiroshi Saito2017-12-27 13:16:28 +0000
commit7e35e9c7c49377eb07b3d9383740cf2a80cc479b (patch)
treedf87322a524dfcb5e620e036c48569834fc58571
parent9c3ed9a7ed0f69e8d3ca6d521e330cb7f25bc163 (diff)
Prep release 10.01.0000
-rw-r--r--configure.ac2
-rw-r--r--docs/release.html13
-rw-r--r--version.h4
3 files changed, 16 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 7c5c321..ba761ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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
diff --git a/docs/release.html b/docs/release.html
index 5566671..b08cb83 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -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">
diff --git a/version.h b/version.h
index 112af96..486a73a 100644
--- a/version.h
+++ b/version.h
@@ -14,13 +14,13 @@
* 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