changeset 3541:4beabcea3a5c Orthanc-1.5.8

Orthanc-1.5.8
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Oct 2019 12:52:25 +0200
parents 096c827cbf9e
children 25126912aa2c 763533d6dd67 cfe805d75e4b
files NEWS Resources/CMake/OrthancFrameworkParameters.cmake UnitTestsSources/DicomMapTests.cpp
diffstat 3 files changed, 10 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Tue Oct 15 13:01:14 2019 +0200
+++ b/NEWS	Wed Oct 16 12:52:25 2019 +0200
@@ -1,13 +1,16 @@
 Pending changes in the mainline
 ===============================
 
+
+Version 1.5.8 (2019-10-16)
+==========================
+
 REST API
 --------
 
 * API version has been upgraded to 4
-* in /ordered-slices route, ignore instances without position/normal/seriesIndex
-  unless there are only such instances in the series.
-
+* In /ordered-slices route, ignore instances without position/normal/seriesIndex,
+  unless there are only such instances in the series
 
 Maintenance
 -----------
@@ -27,6 +30,7 @@
   transmitted into HTTP headers.
 * Fix lost relationships between CT and RT-STRUCT during anonymization
 
+
 Version 1.5.7 (2019-06-25)
 ==========================
 
--- a/Resources/CMake/OrthancFrameworkParameters.cmake	Tue Oct 15 13:01:14 2019 +0200
+++ b/Resources/CMake/OrthancFrameworkParameters.cmake	Wed Oct 16 12:52:25 2019 +0200
@@ -3,7 +3,7 @@
 #####################################################################
 
 # Version of the build, should always be "mainline" except in release branches
-set(ORTHANC_VERSION "mainline")
+set(ORTHANC_VERSION "1.5.8")
 
 # Version of the database schema. History:
 #   * Orthanc 0.1.0 -> Orthanc 0.3.0 = no versioning
--- a/UnitTestsSources/DicomMapTests.cpp	Tue Oct 15 13:01:14 2019 +0200
+++ b/UnitTestsSources/DicomMapTests.cpp	Wed Oct 16 12:52:25 2019 +0200
@@ -381,10 +381,10 @@
   // "800\0" in US COLMUNS tag
   m.SetValue(DICOM_TAG_COLUMNS, "800\0", false);
   ASSERT_TRUE(m.GetValue(DICOM_TAG_COLUMNS).ParseFirstUnsignedInteger(ui));
-  ASSERT_EQ(800, ui);
+  ASSERT_EQ(800u, ui);
   m.SetValue(DICOM_TAG_COLUMNS, "800", false);
   ASSERT_TRUE(m.GetValue(DICOM_TAG_COLUMNS).ParseFirstUnsignedInteger(ui));
-  ASSERT_EQ(800, ui);
+  ASSERT_EQ(800u, ui);
 }