Skip to content

Commit

Permalink
prepare release 5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gofal committed May 23, 2022
1 parent 46d2f27 commit 247d3aa
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
6 changes: 5 additions & 1 deletion ChangeLog5.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#### 5.0.3 (TBD)
#### 5.0.4 (TBD)


#### 5.0.3 (2022-05-23)
* **Breaking change**: subclasses of DicomService will have to pass an instance of DicomServiceDependencies along to the DicomService base constructor. This replaces the old LogManager / NetworkManager / TranscoderManager dependencies. (Implemented in the context of #1291)
* **Breaking change**: subclasses of DicomServer will have to pass an instance of DicomServerDependencies along to the DicomServer base constructor. This replaces the old NetworkManager / LogManager dependencies. (Implemented in the context of #1291)
* **Breaking change**: DicomClient no longer has a NetworkManager, LogManager or TranscoderManager, these are to be configured via dependency injection. (Implemented in the context of #1144)
* Update to DICOM Standard 2022b
* Added option `numberSerializationMode` to `JsonDicomConverter` that allows different modes for serializing DS/IS/UV/SV DICOM items, including handling of invalid values (#1354 & #1362)
* Added an extension to get a DateTimeOffset respecting the timezone info in the dataset (#1310)
* Fixed bug where anonymization threw an exception if a DicomTag of VR UI contained no value (#1308)
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<Copyright>Copyright © fo-dicom contributors 2012-2022</Copyright>
<Description>fo-dicom</Description>

<AssemblyVersion>5.0.2</AssemblyVersion>
<FileVersion>5.0.2.0</FileVersion>
<InformationalVersion>5.0.2</InformationalVersion>
<AssemblyVersion>5.0.3</AssemblyVersion>
<FileVersion>5.0.3.0</FileVersion>
<InformationalVersion>5.0.3</InformationalVersion>
</PropertyGroup>

<PropertyGroup Condition="$(GenerateDocumentation)==1">
Expand Down
2 changes: 1 addition & 1 deletion FO-DICOM.Core/FO-DICOM.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageProjectUrl>https://github.com/fo-dicom/fo-dicom</PackageProjectUrl>
<Description>A NetStandard DICOM library.
Version 5 has some breaking changes to version 4. Read here for more information how to migrate: https://github.com/fo-dicom/fo-dicom/wiki/Upgrade-from-version-4-to-version-5</Description>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>fo-dicom</PackageId>
<LangVersion>8.0</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion Logging/FO-DICOM.NLog/FO-DICOM.NLog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>fo-dicom.snk</AssemblyOriginatorKeyFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<Authors>fo-dicom contributors</Authors>
<Product>Fellow Oak DICOM</Product>
<Description>A NetStandard logging library for fo-dicom to integrate NLog.</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>fo-dicom.Imaging.Desktop</id>
<version>5.0.2</version>
<version>5.0.3</version>
<title>Fellow Oak DICOM System.Drawing support</title>
<authors>fo-dicom contributors</authors>
<license type="expression">MS-PL</license>
Expand All @@ -12,7 +12,7 @@
<description>System.Drawing support</description>
<copyright>Copyright (c) fo-dicom contributors 2012-2022</copyright>
<dependencies>
<dependency id="fo-dicom" version="5.0.2" />
<dependency id="fo-dicom" version="5.0.3" />
</dependencies>
</metadata>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>FellowOakDicom.Imaging.ImageSharp</RootNamespace>
<AssemblyName>fo-dicom.Imaging.ImageSharp</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>5.0.2</Version>
<Version>5.0.3</Version>
<Authors>fo-dicom contributors</Authors>
<Company>fo-dicom</Company>
<Product>Fellow Oak DICOM</Product>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This library is licensed under the [Microsoft Public License (MS-PL)](http://ope

### Features
* Targets .NET Standard 2.0
* DICOM dictionary version 2021e
* DICOM dictionary version 2022b
* High-performance, fully asynchronous `async`/`await` API
* JPEG (including lossless), JPEG-LS, JPEG2000, and RLE image compression (via additional package)
* Supports very large datasets with content loading on demand
Expand Down

0 comments on commit 247d3aa

Please sign in to comment.