Skip to content

Commit cb21a8d

Browse files
committed
Bump version to v1.1.2
1 parent e8fef1b commit cb21a8d

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

colorspacious/ciecam02.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# Average 1.0 0.69 1.0
2222
# Dim 0.9 0.59 0.9
2323
# Dark 0.8 0.525 0.8
24+
# See: https://github.com/njsmith/colorspacious/issues/14
2425
CIECAM02Surround = namedtuple("CIECAM02Surround", ["F", "c", "N_c"])
2526
CIECAM02Surround.AVERAGE = CIECAM02Surround(1.0, 0.69, 1.0)
2627
CIECAM02Surround.DIM = CIECAM02Surround(0.9, 0.59, 0.9)

colorspacious/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
1919
# 1.0.0.)
2020

21-
__version__ = "1.1.1+dev"
21+
__version__ = "1.1.2"

doc/changes.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Changes
22
=======
33

4+
v1.1.2
5+
------
6+
7+
* **BUG AFFECTING CALCULATIONS:** As a result of the scrutiny
8+
triggered by the v1.1.1 release, we discovered that the reference
9+
article that colorspacious (and other libraries) was using as a
10+
source for the ``CIECAM02Surround.DIM`` constant values was *itself*
11+
incorrect. It has now been corrected, and verified against CIE
12+
159:2004. See `#14
13+
<https://github.com/njsmith/colorspacious/issues/14>`__ for details,
14+
and thanks to Thomas Mansencal and Mark Fairchild for helping sort
15+
this out.
16+
17+
Like the bug fix in v1.1.1, this doesn't affect most calculations;
18+
it only matters if you were explicitly choosing the
19+
``CIECAM02Surround.DIM`` viewing conditions.
20+
21+
422
v1.1.1
523
------
624

0 commit comments

Comments
 (0)