Skip to content

Commit 251c8e8

Browse files
authored
prepare for release 17.0006 (#125)
1 parent 6b84d23 commit 251c8e8

File tree

3 files changed

+45
-4
lines changed

3 files changed

+45
-4
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.0005, [[email protected]])
2+
AC_INIT(psqlodbc, 17.00.0006, [[email protected]])
33
AC_PREREQ(2.57)
44
AC_CONFIG_AUX_DIR(config)
55
AM_INIT_AUTOMAKE

docs/release.html

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,48 @@
1010
<h1>psqlODBC release notes</h1>
1111
<hr>
1212
<ol type="1">
13-
<h2><a id="17.00.0005">psqlODBC 17.00.0005 Release</a></h2></h2>
13+
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
14+
Changes:<br />
15+
<li>
16+
Refactor: Comprehensive variable naming improvements across the codebase <a href="https://github.com/postgresql/psqlodbc/pull/125">PR #125</a>
17+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
18+
</li>
19+
<li>
20+
Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus)
21+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
22+
</li>
23+
<li>
24+
Enhancement: Improved StatementClass structure variable names for clarity (e.g., hdbc → connectionHandle, curres → currentResult)
25+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
26+
</li>
27+
<li>
28+
Enhancement: Updated QResultClass structure variables with more descriptive names (e.g., rstatus → resultStatus, num_fields → columnCount)
29+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
30+
</li>
31+
<li>
32+
Documentation: Updated inline comments to reflect new variable naming conventions
33+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
34+
</li>
35+
<li>
36+
Maintenance: Removed unnecessary prefixes from variable names (e.g., __error_message → errorMessage)
37+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
38+
</li>
39+
<li>
40+
Enhancement: Replaced abbreviations with full words for better code readability
41+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
42+
</li>
43+
<li>
44+
Maintenance: Updated all references to renamed variables throughout the codebase
45+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
46+
</li>
47+
<li>
48+
Documentation: Added comprehensive variable mapping documentation for future reference
49+
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
50+
</li>
51+
</ol>
52+
53+
<ol type="1">
54+
<h2><a id="17.00.0005">psqlODBC 17.00.0005 Release</a></h2>
1455
Changes:<br />
1556
<li>
1657
Security: fix possible int overflow <a href="https://github.com/postgresql/psqlodbc/pull/121">PR #121</a> fixes <a href="https://github.com/postgresql/psqlodbc/issues/119">issue #119</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.0005"
17+
#define POSTGRESDRIVERVERSION "17.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,05
23+
#define PG_DRVFILE_VERSION 17,0,00,06
2424
#endif
2525

2626
#endif

0 commit comments

Comments
 (0)