Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v5.8.0 #1941

Merged
merged 4 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,32 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [5.8.0] 2024-09-19

### Feature

- [#1938](https://github.com/SMI/SmiServices/pull/1938) by rkm. Allow specifying path to DynamicRules file

### Bugfix

- [#1892](https://github.com/SMI/SmiServices/pull/1892) by rkm. `docker-compose` replaced by `docker compse`
rkm marked this conversation as resolved.
Show resolved Hide resolved
- [#1917](https://github.com/SMI/SmiServices/pull/1917) by rkm. Fix handling of GlobalOptions deserializing to null
- [#1939](https://github.com/SMI/SmiServices/pull/1939) by rkm. Fix loading of TesseractEngine on Linux
- [#1940](https://github.com/SMI/SmiServices/pull/1940) by rkm. Bump sqlserver to 2022 in CI to fix startup crash

### Change

- [#1879](https://github.com/SMI/SmiServices/pull/1879) by jas88. Remove Oracle remnants, fill in some gaps in Postgresql support instead
- [#1894](https://github.com/SMI/SmiServices/pull/1894) by rkm. Condense all code into 2 csprojs
- [#1901](https://github.com/SMI/SmiServices/pull/1901) by rkm. Switch coverage collection from coverlet.msbuild to Microsoft.CodeCoverage and dotnet-coverage
- [#1902](https://github.com/SMI/SmiServices/pull/1902) by rkm. Separate unit and integration tests into separate projects
- [#1903](https://github.com/SMI/SmiServices/pull/1903) by rkm. Run automated Visual Studio code cleanup & apply fixes
- [#1906](https://github.com/SMI/SmiServices/pull/1906) by jas88. Exclude test code from test coverage calculations since testing tests makes no sense

### Meta

- [#1891](https://github.com/SMI/SmiServices/pull/1891) by rkm. Tidy & auto-format codebase

## [5.7.2] 2024-07-29

### Feature
Expand Down Expand Up @@ -1388,4 +1414,5 @@ First stable release after importing the repository from the private
[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
[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
[5.8.0]: https://github.com/SMI/SmiServices/compare/v5.7.2...v5.8.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.8.0...main
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
[assembly: AssemblyCulture("")]

// These should be overwritten by release builds
[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
[assembly: AssemblyVersion("5.8.0")]
[assembly: AssemblyFileVersion("5.8.0")]
[assembly: AssemblyInformationalVersion("5.8.0")] // This one can have the extra build info after it
1 change: 0 additions & 1 deletion news/1894-change.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1901-change.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1902-change.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1903-change.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1906-change.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1917-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1938-feature.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1939-bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion news/1940-bugfix.md

This file was deleted.

Loading