Skip to content

Commit 8038cee

Browse files
authored
prepare for release 17.00.0007 (#147)
1 parent 9d3b73b commit 8038cee

File tree

4 files changed

+26
-6
lines changed

4 files changed

+26
-6
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
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.0006, [pgsql-odbc@postgresql.org])
2+
AC_INIT(psqlodbc, 17.00.0007, [pgsql-odbc@postgresql.org])
33
AC_PREREQ(2.57)
44
AC_CONFIG_AUX_DIR(config)
55
AM_INIT_AUTOMAKE

connection.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)
10941094

10951095
if (ret = LIBPQ_connect(self), ret <= 0)
10961096
return ret;
1097-
1097+
10981098
/* Check current DateStyle first */
10991099
res = CC_send_query(self, "SHOW DateStyle;", NULL, READ_ONLY_QUERY, NULL);
11001100
if (QR_command_maybe_successful(res))
@@ -1116,7 +1116,7 @@ LIBPQ_CC_connect(ConnectionClass *self, char *salt_para)
11161116
}
11171117
}
11181118
}
1119-
1119+
11201120
if (QR_command_maybe_successful(res))
11211121
{
11221122
handle_show_results(res);

docs/release.html

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,32 @@
1010
<h1>psqlODBC release notes</h1>
1111
<hr>
1212
<ol type="1">
13-
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
13+
<h2><a id="17.00.0007">psqlODBC 17.00.0007 Release</a></h2>
1414
Changes:<br />
1515
<li>
16+
Fix: GetDescRec on big-endian architectures <a href="https://github.com/postgresql/psqlodbc/pull/130">PR #130</a>
17+
Author: <a href="https://github.com/df7cb">Christoph Berg</a>
18+
</li>
19+
<li>
20+
Refactor: use operator(pg_catalog.operator) to fully qualify the operator <a href="https://github.com/postgresql/psqlodbc/pull/139">PR #139</a>
21+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
22+
</li>
23+
<li>
24+
Fix: Make sure the null terminator len_for_wcs_term is included in the decision to realloc <a href="https://github.com/postgresql/psqlodbc/pull/144">PR #145</a>
25+
Author: <a href="https://github.com/markmaker">Mark Maker</a>
26+
</li>
27+
<li>
28+
Refactor: check the datestyle before setting it, if it is different than ISO change it, otherwise leave it as is <a href="https://github.com/postgresql/psqlodbc/pull/144">PR #144</a>
29+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
30+
</li>
31+
32+
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
33+
Changes:<br />
34+
<li>
1635
Refactor: Comprehensive variable naming improvements across the codebase <a href="https://github.com/postgresql/psqlodbc/pull/125">PR #125</a>
1736
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
1837
</li>
38+
1939
<li>
2040
Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus)
2141
Author: <a href="https://github.com/davecramer">Dave Cramer</a>

version.h

Lines changed: 2 additions & 2 deletions
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.0006"
17+
#define POSTGRESDRIVERVERSION "17.00.0007"
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,06
23+
#define PG_DRVFILE_VERSION 17,0,00,07
2424
#endif
2525

2626
#endif

0 commit comments

Comments
 (0)