diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b2837134..7003ef336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,17 @@ A raw git diff can be seen [here][unreleased]. +## [5.7.2] 2024-07-29 + +### Feature + +- [#1889](https://github.com/SMI/SmiServices/pull/1889) by jas88. Make DB exception handling DB-agnostic rather than MySQL specific + +### Bugfix + +- [#1887](https://github.com/SMI/SmiServices/pull/1887) by rkm. Pass setInitialDatabase as true to GetDistinctLiveDatabaseServer to ensure that the correct database is used when connecting to Postgres +- [#1888](https://github.com/SMI/SmiServices/pull/1888) by rkm. Ensure keyTag is properly wrapped in QuerySyntaxHelper for Postgres support + ## [5.7.1] 2024-07-24 ### Feature @@ -1376,4 +1387,5 @@ First stable release after importing the repository from the private [5.6.1]: https://github.com/SMI/SmiServices/compare/v5.6.0...v5.6.1 [5.7.0]: https://github.com/SMI/SmiServices/compare/v5.6.1...v5.7.0 [5.7.1]: https://github.com/SMI/SmiServices/compare/v5.7.0...v5.7.1 -[unreleased]: https://github.com/SMI/SmiServices/compare/v5.7.1...main +[5.7.2]: https://github.com/SMI/SmiServices/compare/v5.7.1...v5.7.2 +[unreleased]: https://github.com/SMI/SmiServices/compare/v5.7.2...main diff --git a/news/1887-bugfix.md b/news/1887-bugfix.md deleted file mode 100644 index cb7f70e8d..000000000 --- a/news/1887-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Pass setInitialDatabase as true to GetDistinctLiveDatabaseServer to ensure that the correct database is used when connecting to Postgres diff --git a/news/1888-bugfix.md b/news/1888-bugfix.md deleted file mode 100644 index 26582e040..000000000 --- a/news/1888-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Ensure keyTag is properly wrapped in QuerySyntaxHelper for Postgres support diff --git a/news/1889-feature.md b/news/1889-feature.md deleted file mode 100644 index eab6242aa..000000000 --- a/news/1889-feature.md +++ /dev/null @@ -1 +0,0 @@ -Make DB exception handling DB-agnostic rather than MySQL specific diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 9a59a40cc..168bbaee4 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be overwritten by release builds -[assembly: AssemblyVersion("5.7.1")] -[assembly: AssemblyFileVersion("5.7.1")] -[assembly: AssemblyInformationalVersion("5.7.1")] // This one can have the extra build info after it +[assembly: AssemblyVersion("5.7.2")] +[assembly: AssemblyFileVersion("5.7.2")] +[assembly: AssemblyInformationalVersion("5.7.2")] // This one can have the extra build info after it