From 7e35e9c7c49377eb07b3d9383740cf2a80cc479b Mon Sep 17 00:00:00 2001 From: Hiroshi Saito Date: Wed, 27 Dec 2017 22:16:28 +0900 Subject: [PATCH] Prep release 10.01.0000 --- configure.ac | 2 +- docs/release.html | 13 +++++++++++++ version.h | 4 ++-- 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 @@

psqlODBC release notes


+

psqlODBC 10.01.0000 Release

+Changes:
+
    +
  1. Call Get-VSSetupInstance to detect Visual Studio installations whose version >= 15 when VSSetup module is available.
  2. +
  3. 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.
  4. +
  5. Add add an option -NoPDB to buildInstallers.ps1.
  6. +The switch option can be specified so as to exclude PDB files from the installers. +
  7. Fix a bug in pgdebug_realloc().
  8. +
  9. 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 +
  10. Review the level of MYLOG, QLOG.
  11. +Divide *level 1(detail)* log into *level 1(tuple level)* log and *level 2(detail)* log. +

psqlODBC 10.00.0000 Release

Changes:
    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 -- 2.39.5