diff --git a/CHANGELOG.md b/CHANGELOG.md index c88e5dcb..59530a9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ... +## [1.3.1] 2019-10-18 + +### Added + +- Added linux x64 binaries to enable plugin to work from CLI engines running in linux hosts (e.g. data load engine) + +## Removed + +- Removed dlls that are already part of RDMP core application (e.g. Rdmp.Core.dll) from plugin archive + ## [1.3.0] 2019-09-13 ## Changed @@ -36,7 +46,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial commit from private repo -[Unreleased]: https://github.com/HicServices/RdmpDicom/compare/v1.3.0...develop +[Unreleased]: https://github.com/HicServices/RdmpDicom/compare/v1.3.1...develop +[1.3.1]: https://github.com/HicServices/RdmpDicom/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/HicServices/RdmpDicom/compare/v1.1.0...v1.3.0 [1.1.0]: https://github.com/HicServices/RdmpDicom/compare/v1.0.2...v1.1.0 [1.0.2]: https://github.com/HicServices/RdmpDicom/compare/1581c5ae3a12db1873f4cf1a930215750ad2ae14...v1.0.2 diff --git a/Rdmp.Dicom.nuspec b/Rdmp.Dicom.nuspec index 67260956..c78f1b22 100644 --- a/Rdmp.Dicom.nuspec +++ b/Rdmp.Dicom.nuspec @@ -10,7 +10,14 @@ - - + + + \ No newline at end of file diff --git a/SharedAssemblyInfo.cs b/SharedAssemblyInfo.cs index 0658c9ef..43a24ab9 100644 --- a/SharedAssemblyInfo.cs +++ b/SharedAssemblyInfo.cs @@ -7,6 +7,6 @@ [assembly: AssemblyCulture("")] // These should be replaced with correct values by the release process -[assembly: AssemblyVersion("1.3.0")] -[assembly: AssemblyFileVersion("1.3.0")] -[assembly: AssemblyInformationalVersion("1.3.0")] +[assembly: AssemblyVersion("1.3.1")] +[assembly: AssemblyFileVersion("1.3.1")] +[assembly: AssemblyInformationalVersion("1.3.1")] diff --git a/rakefile.rb b/rakefile.rb index 94160aee..51cb8ae8 100644 --- a/rakefile.rb +++ b/rakefile.rb @@ -89,9 +89,13 @@ version = File.open('version') {|f| f.readline} puts "version: #{version}" + Dir.chdir('Plugin/net461/') do + sh "dotnet publish --runtime win-x64 -c #{args.config} --self-contained false" + end Dir.chdir('Plugin/netcoreapp2.2/') do - sh "dotnet publish --runtime win-x64 -c #{args.config}" + sh "dotnet publish --runtime win-x64 -c #{args.config} --self-contained false" + sh "dotnet publish --runtime linux-x64 -c #{args.config} --self-contained false" end #Packages the plugin which will be loaded into RDMP