Skip to content

Commit 68db561

Browse files
authored
release 16_00_0006 bugfix for double free (#50)
* release 16_00_0006 bugfix for double free
1 parent 563ad6c commit 68db561

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Process this file with autoconf to produce a configure script.
2-
AC_INIT(psqlodbc, 17.00.0000, [[email protected]])
2+
AC_INIT(psqlodbc, 16.00.0006, [[email protected]])
33
AC_PREREQ(2.57)
44
AC_CONFIG_AUX_DIR(config)
55
AM_INIT_AUTOMAKE

docs/release.html

+12-7
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,20 @@
99

1010
<h1>psqlODBC release notes</h1>
1111
<hr>
12-
<h2><a id="17.00.0000">psqlODBC 17.00.0000 Release</a></h2>
13-
Changes:<br />
14-
<li>
15-
Change: Build against PostgreSQL 17 RC1 <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/44">PR #44</a>
16-
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
17-
</li>
1812

1913
<ol type="1">
20-
14+
<h2><a id="16.00.0006">psqlODBC 16.00.0006 Release</a></h2>
15+
Changes:<br />
16+
<li>
17+
Change: Build against PostgreSQL 17 RC1 <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/44">PR #44</a>
18+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
19+
</li>
20+
<li>
21+
Fix: Double free of COL_INFO object <a href="https://github.com/postgresql-interfaces/psqlodbc/pull/48">PR #48</a>
22+
Fixes <a href="https://github.com/postgresql-interfaces/psqlodbc/issues/47"> Issue #47</a>
23+
Author: <a href="https://github.com/progmachine">Alexandr Kuznetsov</a>
24+
</li>
25+
2126
<h2><a id="16.00.0005">psqlODBC 16.00.0005 Release</a></h2>
2227
Changes:<br />
2328
<ol type="1">

version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
1515
*/
1616
#ifndef POSTGRESDRIVERVERSION
17-
#define POSTGRESDRIVERVERSION "17.00.0000"
17+
#define POSTGRESDRIVERVERSION "16.00.0006"
1818
#endif
1919
#ifndef POSTGRES_RESOURCE_VERSION
2020
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
2121
#endif
2222
#ifndef PG_DRVFILE_VERSION
23-
#define PG_DRVFILE_VERSION 17,0,00,00
23+
#define PG_DRVFILE_VERSION 16,0,00,06
2424
#endif
2525

2626
#endif

0 commit comments

Comments
 (0)