diff --git a/CHANGELOG.md b/CHANGELOG.md index 286a81d41..5a8444f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ A raw git diff can be seen [here][unreleased]. +## [5.0.1] 2022-02-18 + +## Bugfix + +- [#1054](https://github.com/SMI/SmiServices/pull/1054) by rkm. Swap stderr + reading and process.waitFor in SmiCtpProcessor to avoid a deadlock + ## [5.0.0] 2022-02-17 ## Feature @@ -1028,7 +1035,8 @@ First stable release after importing the repository from the private - Anonymous `MappingTableName` must now be fully specified to pass validation (e.g. `mydb.mytbl`). Previously skipping database portion was supported. -[unreleased]: https://github.com/SMI/SmiServices/compare/v5.0.0...master +[unreleased]: https://github.com/SMI/SmiServices/compare/v5.0.1...master +[5.0.1]: https://github.com/SMI/SmiServices/compare/v5.0.0...v5.0.1 [5.0.0]: https://github.com/SMI/SmiServices/compare/v4.0.0...v5.0.0 [4.0.0]: https://github.com/SMI/SmiServices/compare/v3.2.1...v4.0.0 [3.2.1]: https://github.com/SMI/SmiServices/compare/v3.2.0...v3.2.1 diff --git a/README.md b/README.md index c95cdabbd..e74c01f98 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ | Linux | [![Build Status](https://dev.azure.com/SmiOps/Public/_apis/build/status/SmiServices%20Linux?branchName=master)](https://dev.azure.com/SmiOps/Public/_build/latest?definitionId=3&branchName=master) | -Version: `5.0.0` +Version: `5.0.1` # SMI Services diff --git a/news/1054-bugfix.md b/news/1054-bugfix.md deleted file mode 100644 index 8901d4597..000000000 --- a/news/1054-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Swap stderr reading and process.waitFor in SmiCtpProcessor to avoid a deadlock diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 543182421..d23d41e6e 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.0.0")] -[assembly: AssemblyFileVersion("5.0.0")] -[assembly: AssemblyInformationalVersion("5.0.0")] // This one can have the extra build info after it +[assembly: AssemblyVersion("5.0.1")] +[assembly: AssemblyFileVersion("5.0.1")] +[assembly: AssemblyInformationalVersion("5.0.1")] // This one can have the extra build info after it