release 16_00_0006 bugfix for double free (#50)
authorDave Cramer <davecramer@gmail.com>
Fri, 27 Sep 2024 11:28:28 +0000 (07:28 -0400)
committerGitHub <noreply@github.com>
Fri, 27 Sep 2024 11:28:28 +0000 (07:28 -0400)
* release 16_00_0006 bugfix for double free

configure.ac
docs/release.html
version.h

index 90ed2a80b63fef2e2efd0a2c58fee8e493b10fca..c83ddd75ad37acae896e0403fa2d4d1af6d459ab 100644 (file)
@@ -1,5 +1,5 @@
 # Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 17.00.0000, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 16.00.0006, [pgsql-odbc@postgresql.org])
 AC_PREREQ(2.57)
 AC_CONFIG_AUX_DIR(config)
 AM_INIT_AUTOMAKE
index 41def5f82b34208fed6efe65d331aff065fcfcef..f56c95c9ee4eb49c579b16717ee4cd1613dffb3f 100644 (file)
@@ -9,15 +9,20 @@
  
 <h1>psqlODBC release notes</h1>
 <hr>
-<h2><a id="17.00.0000">psqlODBC 17.00.0000 Release</a></h2>
-Changes:<br />
-<li>
-  Change: Build against PostgreSQL 17 RC1 <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/44">PR #44</a>
-  Author: <a href="https://github.com/davecramer">Dave Cramer</a>
-</li>
 
 <ol type="1">
-
+  <h2><a id="16.00.0006">psqlODBC 16.00.0006 Release</a></h2>
+  Changes:<br />
+  <li>
+    Change: Build against PostgreSQL 17 RC1 <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/44">PR #44</a>
+    Author: <a href="https://github.com/davecramer">Dave Cramer</a>
+  </li>
+  <li>
+    Fix: Double free of COL_INFO object <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/48">PR #48</a> 
+    Fixes <a href="https://github.com/postgresql-interfaces/psqlodbc/issues/47"> Issue #47</a>
+    Author: <a href="https://github.com/progmachine">Alexandr Kuznetsov</a>
+  </li>
+  
 <h2><a id="16.00.0005">psqlODBC 16.00.0005 Release</a></h2>
 Changes:<br />
 <ol type="1">
index 38fcec39533f1d1417afcf35c406368595efb529..adb0a61024ec91442c47456fcf903d2e5d9853c2 100644 (file)
--- a/version.h
+++ b/version.h
  * and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
  */
 #ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION      "17.00.0000"
+#define POSTGRESDRIVERVERSION      "16.00.0006"
 #endif
 #ifndef POSTGRES_RESOURCE_VERSION
 #define POSTGRES_RESOURCE_VERSION  POSTGRESDRIVERVERSION
 #endif
 #ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION     17,0,00,00
+#define PG_DRVFILE_VERSION     16,0,00,06
 #endif
 
 #endif