Prep release 15.00.0000. REL-15_00_0000
authorSAITO Hiroshi <hiroshi@winpg.jp>
Fri, 23 Jun 2023 07:28:19 +0000 (16:28 +0900)
committerSAITO Hiroshi <hiroshi@winpg.jp>
Fri, 23 Jun 2023 07:28:19 +0000 (16:28 +0900)
configure.ac
docs/release.html
version.h

index 7f79563a85397ffff2c4bc879894bfc95126a192..6fd91cc1fc62de235db97f5c33818f45ff5cc270 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 13.02.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 15.00.0000, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 3f2dbf95de4b5953c01fc8ff3c2803048d41fe58..02556909fad632cdbcf6e9a6d664b2f22b2d8320 100644 (file)
@@ -9,6 +9,15 @@
 
 <h1>psqlODBC release notes</h1>
 <hr>
+<h2><a id="15.00.0000">psqlODBC 15.00.0000 Release</a></h2>
+Changes:<br />
+<ol type="1">
+<li>Fix a bug that SQLGetDiagField(SQL_DIAG_NUMBER) with SQL_HANDLE_DBC returns SQL_NO_DATA even if an error record exists.</li>
+<li>Fix a typo "RECISION"  which should be "PRECISION".</li>
+<li>Enable SQLColumnPrivileges functionality.</li>
+<li>Currenly SQLColumnPrivileges() call fails. Fix a typo which is the cause.</li>
+<li>Fix a bug that SQLColAttribute returns wrong column name.</li>
+</ol>
 <h2><a id="13.02.0000">psqlODBC 13.02.0000 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 92237b7d3c2fa2428f702d7a9b3c286bbd41c591..04afa9754bc1bebcbfe1fc54c0e9c572afcc2b1f 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "13.02.0000"
+#define POSTGRESDRIVERVERSION      "15.00.0000"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     13,2,00,00
+#define PG_DRVFILE_VERSION     15,0,00,00
 #endif
 
 #endif