Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0005, [[email protected]])
AC_INIT(psqlodbc, 17.00.0006, [[email protected]])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
Expand Down
43 changes: 42 additions & 1 deletion docs/release.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,48 @@
<h1>psqlODBC release notes</h1>
<hr>
<ol type="1">
<h2><a id="17.00.0005">psqlODBC 17.00.0005 Release</a></h2></h2>
<h2><a id="17.00.0006">psqlODBC 17.00.0006 Release</a></h2>
Changes:<br />
<li>
Refactor: Comprehensive variable naming improvements across the codebase <a href="https://github.com/postgresql/psqlodbc/pull/125">PR #125</a>
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Enhancement: Renamed ConnectionClass structure variables for better readability (e.g., pqconn → postgresConnection, status → connectionStatus)
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Enhancement: Improved StatementClass structure variable names for clarity (e.g., hdbc → connectionHandle, curres → currentResult)
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Enhancement: Updated QResultClass structure variables with more descriptive names (e.g., rstatus → resultStatus, num_fields → columnCount)
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Documentation: Updated inline comments to reflect new variable naming conventions
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Maintenance: Removed unnecessary prefixes from variable names (e.g., __error_message → errorMessage)
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Enhancement: Replaced abbreviations with full words for better code readability
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Maintenance: Updated all references to renamed variables throughout the codebase
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
<li>
Documentation: Added comprehensive variable mapping documentation for future reference
Author: <a href="https://github.com/davecramer">Dave Cramer</a>
</li>
</ol>

<ol type="1">
<h2><a id="17.00.0005">psqlODBC 17.00.0005 Release</a></h2>
Changes:<br />
<li>
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>
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.0005"
#define POSTGRESDRIVERVERSION "17.00.0006"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
#define PG_DRVFILE_VERSION 17,0,00,05
#define PG_DRVFILE_VERSION 17,0,00,06
#endif

#endif