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

Add docs for v7.0.4, prep v7.0.5 release #420

Merged
merged 2 commits into from
Jun 1, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
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")]