From 6639c2af8a1b760aa13590c2b57b262cad9b5379 Mon Sep 17 00:00:00 2001 From: James A Sutherland <> Date: Wed, 22 May 2024 07:29:07 -0500 Subject: [PATCH 1/3] Document 3.2.2 release --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d00c26bf..b74c2c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix bug in PostgreSQL where database listing failed if a database named 'postgres' was not present - Make database enumeration an Enumerable not an array +## [3.2.2] - 2024-03-13 + +- Enable custom timeout for bulk copy operations + ## [3.2.1] - 2024-03-11 - Add Setter for DiscoveredDatabaseHelper Create Database Timeout @@ -373,7 +377,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed Drop table to work correctly with Views - Exists now works correctly for Views (previously it would return true if there was no view but a table with the same name) -[Unreleased]: https://github.com/HicServices/FAnsiSql/compare/v3.2.1...main +[Unreleased]: https://github.com/HicServices/FAnsiSql/compare/v3.2.2...main +[3.2.2]: https://github.com/HicServices/FAnsiSql/compare/v3.2.1...v3.2.2 [3.2.1]: https://github.com/HicServices/FAnsiSql/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/HicServices/FAnsiSql/compare/v3.1.1...v3.2.0 [3.1.1]: https://github.com/HicServices/FAnsiSql/compare/v3.1.0...v3.1.1 From 37695ef25db48fafb26af5cd03c2d47bf845a293 Mon Sep 17 00:00:00 2001 From: James A Sutherland <> Date: Wed, 22 May 2024 07:34:35 -0500 Subject: [PATCH 2/3] 3.2.3 release --- CHANGELOG.md | 6 ++++++ SharedAssemblyInfo.cs | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b74c2c60..bcd7a3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.2.3] - 2024-05-22 + - Fix bug in PostgreSQL boolean handling (use booleans, not BIT) - Fix bug in PostgreSQL where database listing failed if a database named 'postgres' was not present - Make database enumeration an Enumerable not an array +- Bump MySqlConnector from 2.3.5 to 2.3.7 +- Bump Npgsql from 8.0.2 to 8.0.3 +- Bump Oracle.ManagedDataAccess.Core from 3.21.130 to 23.4.0 +- Add System.Linq.Async 6.0.1 ## [3.2.2] - 2024-03-13 diff --git a/SharedAssemblyInfo.cs b/SharedAssemblyInfo.cs index 96b6326a..87322528 100644 --- a/SharedAssemblyInfo.cs +++ b/SharedAssemblyInfo.cs @@ -6,6 +6,6 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("3.2.2")] -[assembly: AssemblyFileVersion("3.2.2")] -[assembly: AssemblyInformationalVersion("3.2.2")] +[assembly: AssemblyVersion("3.2.3")] +[assembly: AssemblyFileVersion("3.2.3")] +[assembly: AssemblyInformationalVersion("3.2.3")] From 61d6b9edb4ce859d0b8bd5f93f46b3ab3f930a77 Mon Sep 17 00:00:00 2001 From: James A Sutherland <> Date: Wed, 22 May 2024 07:39:49 -0500 Subject: [PATCH 3/3] Update source links for 3.2.3 --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcd7a3b0..7fcd1594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -383,7 +383,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed Drop table to work correctly with Views - Exists now works correctly for Views (previously it would return true if there was no view but a table with the same name) -[Unreleased]: https://github.com/HicServices/FAnsiSql/compare/v3.2.2...main +[Unreleased]: https://github.com/HicServices/FAnsiSql/compare/v3.2.3...main +[3.2.3]: https://github.com/HicServices/FAnsiSql/compare/v3.2.2...v3.2.3 [3.2.2]: https://github.com/HicServices/FAnsiSql/compare/v3.2.1...v3.2.2 [3.2.1]: https://github.com/HicServices/FAnsiSql/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/HicServices/FAnsiSql/compare/v3.1.1...v3.2.0