commit 47f359cd275251bc097f1703c91f7da324fc767c
parent 35c95974ca1d21c3afb919fc269979cfe93af8a6
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 2 Jul 2019 15:18:22 +0200
Merge branch 'release_0.2' into develop
Diffstat:
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -29,6 +29,12 @@ informations on CMake.
## Release notes
+### Version 0.2
+
+- Fix the XYZ to sRGB conversion: the reference white was not correctly set.
+- Fix the gamma correction of the linear sRGB color: there was an issue in the
+used formulae.
+
### Version 0.1
- Handle the update of the htrdr-image file format introduced by
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -35,7 +35,7 @@ include_directories(${RSys_INCLUDE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
# Configure and define targets
################################################################################
set(VERSION_MAJOR 0)
-set(VERSION_MINOR 1)
+set(VERSION_MINOR 2)
set(VERSION_PATCH 0)
set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})