Skip to content

Commit

Permalink
Add docs for v7.0.4, prep v7.0.5 release (#420)
Browse files Browse the repository at this point in the history
* Add docs for v7.0.4, prep v7.0.5 release

* Build .snupkg symbols package when packing nupkg

---------

Co-authored-by: James A Sutherland <>
  • Loading branch information
jas88 authored Jun 1, 2024
1 parent 7c22882 commit 4be27fc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
rm -f p/main/fr-FR/Terminal.Gui.resources.dll
rm -f p/main/pt-PT/Terminal.Gui.resources.dll
7z a -tzip Rdmp.Dicom.${{ steps.version.outputs.version }}.nupkg plugin.nuspec p
dotnet pack Rdmp.Dicom/Rdmp.Dicom.csproj -c Release -p:Version=${{ steps.version.outputs.version }} --include-source --include-symbols -o .
dotnet pack Rdmp.Dicom/Rdmp.Dicom.csproj -c Release -p:Version=${{ steps.version.outputs.version }} -p:SymbolPackageFormat=snupkg --include-source --include-symbols -o .
cat > testcmd.yaml <<-EOC
Commands:
- listsupportedcommands
Expand Down
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [7.0.5] 2024-05-31

- Implement CodeMeaning/CodeValue extraction for ICD11 support
- Bump HIC.DicomTypeTranslation from 4.1.0 to 4.1.1

## [7.0.4] 2024-04-08

- Update RDMP API for new multi-load per catalogue

## [7.0.3] 2024-03-28

- Add ability to retry file fetch in FoDicomAnaonymiser
Expand Down Expand Up @@ -406,8 +415,13 @@ Updated to be compatible with RDMP 4.2

- Initial commit from private repo

[Unreleased]: https://github.com/SMI/RdmpDicom/compare/v7.0.0...develop
[7.0.0]: https://github.com/SMI/RdmpDicom/compare/v6.0.2...v7.0.0
[Unreleased]: https://github.com/SMI/RdmpDicom/compare/v7.0.5...develop
[7.0.5]: https://github.com/SMI/RdmpDicom/compare/v7.0.4...v7.0.5
[7.0.4]: https://github.com/SMI/RdmpDicom/compare/v7.0.3...v7.0.4
[7.0.3]: https://github.com/SMI/RdmpDicom/compare/v7.0.2...v7.0.3
[7.0.2]: https://github.com/SMI/RdmpDicom/compare/v7.0.1...v7.0.2
[7.0.1]: https://github.com/SMI/RdmpDicom/compare/v7.0.0-rc1...v7.0.1
[7.0.0]: https://github.com/SMI/RdmpDicom/compare/v6.0.2...v7.0.0-rc1
[6.0.2]: https://github.com/SMI/RdmpDicom/compare/v6.0.1...v6.0.2
[6.0.1]: https://github.com/SMI/RdmpDicom/compare/v6.0.0...v6.0.1
[6.0.0]: https://github.com/SMI/RdmpDicom/compare/v5.0.12...v6.0.0
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyCulture("")]

// These should be replaced with correct values by the release process
[assembly: AssemblyVersion("7.0.4")]
[assembly: AssemblyFileVersion("7.0.4")]
[assembly: AssemblyInformationalVersion("7.0.4")]
[assembly: AssemblyVersion("7.0.5")]
[assembly: AssemblyFileVersion("7.0.5")]
[assembly: AssemblyInformationalVersion("7.0.5")]
[assembly: InternalsVisibleTo("Rdmp.Dicom.Tests")]

0 comments on commit 4be27fc

Please sign in to comment.