From: Hiroshi Saito Date: Thu, 19 Nov 2020 09:26:08 +0000 (+0900) Subject: Prep release 13.00.0000. X-Git-Tag: REL-13_00_0000 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=685397f6eb137880624c55b80551a528e2a13582;p=psqlodbc.git Prep release 13.00.0000. --- diff --git a/configure.ac b/configure.ac index 51ffa1a..8453a29 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(psqlodbc, 12.02.0000, [pgsql-odbc@postgresql.org]) +AC_INIT(psqlodbc, 13.00.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 ccc56a7..6f8cc7b 100644 --- a/docs/release.html +++ b/docs/release.html @@ -9,6 +9,28 @@

psqlODBC release notes


+

psqlODBC 13.00.0000 Release

+Changes:
+
    +
  1. Add support for CONVERT scalar function.
  2. +
  3. Cope with the case that openssl libraries link msvc runtimes other than libraries which psqlodbc or libpq links.
  4. +
  5. all AC_CHECK_SIZEOF() or AC_CHECK_TYPES() macros at earlier stage where LIBS variable isn't set yet.
  6. +These macros compile and run some programs. On some platforms(with some linker options like +--no-as-needed in Lnux Gnu linker) the programs try to link libraries specified by LIBS variable at run time. +There are some cases that the programs fail due to missing library which is actually not needed and AC_CHECK_SIZEOF() returns 0. +
  7. Fix a compilation error with GCC 10 due to conflicting variable names.
  8. +Patch by Paul Wise. +
  9. Remove curr_param_result property of StatementClass and separate parsed result from the exec result.
  10. +
  11. Add support for development with VC16(Visual Studio 2019).
  12. +MSToolsVersion parameter of BuildAll.ps1 and of regress.ps1 are deprecated. +
  13. Hold the first and last result for parametrized SQL statements with array of parameters.
  14. +This would improve the performance of bulk inserts/updates etc. +
  15. Revise the handling of QResultClass list.
  16. +Introduce macros QR_concat(), QR_detach() and QR_next(). +
  17. Correct the handling of SQL_ROW_ERROR and SQL_ROW_SUCCESS_WITH_INFO.
  18. +
  19. Remove the single table restriction in SC_set_SS_columnkey.
  20. +
  21. Improve error reporting abuut SC_pos_reload_needed().
  22. +

psqlODBC 12.02.0000 Release

Changes:
    diff --git a/version.h b/version.h index 3a39e3c..64255dd 100644 --- a/version.h +++ b/version.h @@ -14,13 +14,13 @@ * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj. */ #ifndef POSTGRESDRIVERVERSION -#define POSTGRESDRIVERVERSION "12.02.0000" +#define POSTGRESDRIVERVERSION "13.00.0000" #endif #ifndef POSTGRES_RESOURCE_VERSION #define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION #endif #ifndef PG_DRVFILE_VERSION -#define PG_DRVFILE_VERSION 12,2,00,00 +#define PG_DRVFILE_VERSION 13,0,00,00 #endif #endif