diff --git a/CHANGELOG.md b/CHANGELOG.md index 51241c228..ba7157ebe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,26 @@ A raw git diff can be seen [here][unreleased]. +## [3.0.1] 2021-05-06 + +## Feature + +- [#738](https://github.com/SMI/SmiServices/pull/738) by rkm. Improvements to + CLI user experience + - Immediately verify that the config file (GlobalOptions) we've loaded is + somewhat valid + - Improve visibility of exception messages on CLI exit + +## Bugfix + +- [#737](https://github.com/SMI/SmiServices/pull/737) by rkm. Switch ordering + of annotations in ExtractImagesCliOption to fix a runtime exception. + +## Meta + +- [#736](https://github.com/SMI/SmiServices/pull/736) by rkm. Remove .NET Core + 2.2 runtime from the Azure Pipelines builds + ## [3.0.0] 2021-05-06 ## Feature @@ -820,7 +840,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/v3.0.0...master +[unreleased]: https://github.com/SMI/SmiServices/compare/v3.0.1...master +[3.0.1]: https://github.com/SMI/SmiServices/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/SMI/SmiServices/compare/v2.1.1...v3.0.0 [2.1.1]: https://github.com/SMI/SmiServices/compare/v2.1.0...v2.1.1 [2.1.0]: https://github.com/SMI/SmiServices/compare/v2.0.0...v2.1.0 diff --git a/README.md b/README.md index 4b42e02d4..7574b8846 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Total alerts](https://img.shields.io/lgtm/alerts/g/SMI/SmiServices.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/SMI/SmiServices/alerts/) -Version: `3.0.0` +Version: `3.0.1` # SMI Services diff --git a/news/736-meta.md b/news/736-meta.md deleted file mode 100644 index 02b090dce..000000000 --- a/news/736-meta.md +++ /dev/null @@ -1 +0,0 @@ -Remove .NET Core 2.2 runtime from the Azure Pipelines builds diff --git a/news/737-bugfix.md b/news/737-bugfix.md deleted file mode 100644 index 0d3b9a847..000000000 --- a/news/737-bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Switch ordering of annotations in ExtractImagesCliOption to fix a runtime exception. diff --git a/news/738-feature.md b/news/738-feature.md deleted file mode 100644 index e94d4ec04..000000000 --- a/news/738-feature.md +++ /dev/null @@ -1,3 +0,0 @@ -Improvements to CLI user experience -- Immediately verify that the config file (GlobalOptions) we've loaded is somewhat valid -- Improve visibility of exception messages on CLI exit \ No newline at end of file diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 2c27fc89d..78fdcbbb7 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be overwritten by release builds -[assembly: AssemblyVersion("3.0.0")] -[assembly: AssemblyFileVersion("3.0.0")] -[assembly: AssemblyInformationalVersion("3.0.0")] // This one can have the extra build info after it +[assembly: AssemblyVersion("3.0.1")] +[assembly: AssemblyFileVersion("3.0.1")] +[assembly: AssemblyInformationalVersion("3.0.1")] // This one can have the extra build info after it