diff --git a/configure.ac b/configure.ac
index f35c8258..c1942eb3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT(psqlodbc, 17.00.0004, [pgsql-odbc@postgresql.org])
+AC_INIT(psqlodbc, 17.00.0005, [pgsql-odbc@postgresql.org])
AC_PREREQ(2.57)
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE
diff --git a/docs/release.html b/docs/release.html
index 25fc365e..23fc461e 100644
--- a/docs/release.html
+++ b/docs/release.html
@@ -9,6 +9,70 @@
psqlODBC release notes
+
+
+ Changes:
+ -
+ Fix: Use memset if memset_s is not available PR #107
+ Author: Favian (Ian) Samatha
+
+ -
+ Feature: Safe sscanf implementation PR #108
+ Author: Colin
+
+ -
+ Fix: Don't assume output connection string has size MAX_CONNECT_STRING PR #106
+ Author: Micah Baker
+
+ -
+ Security: Change memset to memset_s/SecureZeroMemory PR #105
+ Author: Favian (Ian) Samatha
+
+ -
+ Security: Replace unsafe string-to-number conversions PR #103
+ Author: Favian (Ian) Samatha
+
+ -
+ Build: Update main.yml to use wix version 6.0.0 PR #104
+ Author: Dave Cramer
+
+ -
+ Fix: Fix possible use of uninitialized memory (Issue #99) PR #100
+ Author: Dave Cramer
+
+ -
+ Fix: Change SpecialColumns to return correct information for unique indexes PR #97
+ Author: Dave Cramer
+
+ -
+ UI: Update the font and layouts of all dialogs to improve their look and feel PR #91
+ Author: Keith Wedinger
+
+ -
+ Security: Update OPENSSL to 3.3.3
+ Author: Dave Cramer
+
+ -
+ Test: Test with just unique keys PR #87
+ Author: Dave Cramer
+
+ -
+ Fix: Fix duplicate component codes PR #75
+ Author: Christian Ullrich
+
+ -
+ Documentation: Add new test table for SQLSpecialColumns PR #85
+ Author: Dave Cramer
+
+ -
+ Fix: Fix spelling of 'statement_deferred' PR #86
+ Author: Dave Cramer
+
+ -
+ Documentation: Fix release notes to properly reflect changes PR #81
+ Author: Dave Cramer
+
+
/
Changes:
diff --git a/version.h b/version.h
index dd398fff..5d2dd368 100644
--- a/version.h
+++ b/version.h
@@ -14,13 +14,13 @@
* and PG_DRVFILE_VERSION via winbuild/psqlodbc.vcxproj.
*/
#ifndef POSTGRESDRIVERVERSION
-#define POSTGRESDRIVERVERSION "17.00.0004"
+#define POSTGRESDRIVERVERSION "17.00.0005"
#endif
#ifndef POSTGRES_RESOURCE_VERSION
#define POSTGRES_RESOURCE_VERSION POSTGRESDRIVERVERSION
#endif
#ifndef PG_DRVFILE_VERSION
-#define PG_DRVFILE_VERSION 17,0,00,04
+#define PG_DRVFILE_VERSION 17,0,00,05
#endif
#endif