Skip to content

Commit

Permalink
release 16_00_0006 bugfix for double free (#50)
Browse files Browse the repository at this point in the history
* release 16_00_0006 bugfix for double free
  • Loading branch information
davecramer authored Sep 27, 2024
1 parent 563ad6c commit 68db561
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(psqlodbc, 17.00.0000, [[email protected]])
AC_INIT(psqlodbc, 16.00.0006, [[email protected]])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
Expand Down
19 changes: 12 additions & 7 deletions docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
* 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

0 comments on commit 68db561

Please sign in to comment.