Skip to content

Commit

Permalink
Release v5.7.0 (#1859)
Browse files Browse the repository at this point in the history
* update CHANGELOG for release
* bump version
* update reviewers
  • Loading branch information
rkm authored Jun 24, 2024
1 parent 229c7b9 commit de45a60
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 20 deletions.
36 changes: 35 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,39 @@ A raw git diff can be seen [here][unreleased].

<!--next-->

## [5.7.0] 2024-06-24

### Feature

- [#1679](https://github.com/SMI/SmiServices/pull/1679) by darshad-github. Add dicom-anonymiser (Generic Wrapper Microservice)
- [#1723](https://github.com/SMI/SmiServices/pull/1723) by rkm. bump CI image to ubuntu-22.04
- [#1748](https://github.com/SMI/SmiServices/pull/1748) by howff. Add support for Dermatology SRs
- [#1823](https://github.com/SMI/SmiServices/pull/1823) by rkm. Bump to .NET 8.0 and C# 12
- [#1833](https://github.com/SMI/SmiServices/pull/1833) by jas88. Move SecurityCodeScan.VS2019 analysis to run as part of CodeQL CI checks not in IDE
- [#1834](https://github.com/SMI/SmiServices/pull/1834) by jas88. Update to NUnit v4 API
- [#1843](https://github.com/SMI/SmiServices/pull/1843) by jas88. Update DicomLoader switches and docs
- [#1844](https://github.com/SMI/SmiServices/pull/1844) by rkm. Tidy some files in DicomAnonymiser
- [#1845](https://github.com/SMI/SmiServices/pull/1845) by darshad-github. Update dicom-anonymiser docs
- [#1848](https://github.com/SMI/SmiServices/pull/1848) by rkm. replace archived prettier mirror with mdformat

### Bugfix

- [#1840](https://github.com/SMI/SmiServices/pull/1840) by jas88. Escape multiline CSV properly via CsvHelper

### Doc

- [#1831](https://github.com/SMI/SmiServices/pull/1831) by rkm. Refresh all documentation

- Simplify the top-level README, as this content has been migrated to SMI/docs
- Move READMEs for all tools inside the top-level docs/ to improve navigation
- Add script for checking docs
- Add markdown-link-check hook
- Delete unused TriggerUpdates MongoDB source

### Removal

- [#1804](https://github.com/SMI/SmiServices/pull/1804) by rkm. Delete SRAnonTool, which has been migrated to https://github.com/SMI/StructuredReports.

## [5.6.1] 2024-04-19

### Bugfix
Expand Down Expand Up @@ -1335,4 +1368,5 @@ First stable release after importing the repository from the private
[5.5.0]: https://github.com/SMI/SmiServices/compare/v5.4.0...v5.5.0
[5.6.0]: https://github.com/SMI/SmiServices/compare/v5.5.0...v5.6.0
[5.6.1]: https://github.com/SMI/SmiServices/compare/v5.6.0...v5.6.1
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.6.1...main
[5.7.0]: https://github.com/SMI/SmiServices/compare/v5.6.1...v5.7.0
[unreleased]: https://github.com/SMI/SmiServices/compare/v5.7.0...main
3 changes: 1 addition & 2 deletions docs/dev/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,11 @@ The release workflow is to checkout a new `release/` branch from main, update th

- Update any other files referencing the version. To see an example, check the previous release PR. At time of writing, these are:

- `README.md`: Bump the version in the header
- `src/SharedAssemblyInfo.cs`: Bump the versions in each property

- Commit these changes and push the new branch

- Open a PR for this branch with the title `Release <version>`. Request a review from `@tznind` and `@rkm`
- Open a PR for this branch with the title `Release <version>`. Request a review from `@SMI/reviewers`.

- If there are any further changes which need to be included in the release PR, then these can be merged into the release branch from `main`

Expand Down
1 change: 0 additions & 1 deletion news/1723-feature.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

7 changes: 0 additions & 7 deletions news/1831-doc.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

6 changes: 3 additions & 3 deletions src/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.6.1")]
[assembly: AssemblyFileVersion("5.6.1")]
[assembly: AssemblyInformationalVersion("5.6.1")] // This one can have the extra build info after it
[assembly: AssemblyVersion("5.7.0")]
[assembly: AssemblyFileVersion("5.7.0")]
[assembly: AssemblyInformationalVersion("5.7.0")] // This one can have the extra build info after it

0 comments on commit de45a60

Please sign in to comment.