Skip to content

Commit 1444b52

Browse files
committed
Release prepping
1 parent 34b41c3 commit 1444b52

File tree

3 files changed

+12
-18
lines changed

3 files changed

+12
-18
lines changed

TODO

Lines changed: 0 additions & 5 deletions
This file was deleted.

colorspacious/version.py

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,9 @@
1313
#
1414
# This is compatible with PEP 440:
1515
# http://legacy.python.org/dev/peps/pep-0440/
16-
# in a slightly abusive way -- PEP 440 provides no guidance on what version
17-
# number to use for *unreleased* versions, so we use an "integrator suffix",
18-
# which is intended to be used for things like Debian's locally patched
19-
# version, and is not allowed on public index servers. Which sounds about
20-
# right, actually... Crucially, PEP 440 says that "foo-bar" sorts *after*
21-
# "foo", which is what we want for a dev version. (Compare to "foo.dev0",
22-
# which sorts *before* "foo".)
16+
# via the use of the "local suffix" "+dev", which is disallowed on index
17+
# servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we
18+
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
19+
# 1.0.0.)
2320

24-
__version__ = "0.1.0"
21+
__version__ = "0.1.0+dev"

doc/changes.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ Notable changes since v0.1.0 include:
1616
sRGB standard assumes that you are looking at your monitor in a dim
1717
environment, like a movie theatre; we were calculating as if you
1818
were looking at your monitor in an environment that was 125 times
19-
lighter -- so perhaps indoors, but on a nice sunny day with the
20-
curtains open). This bug is corrected in this release.
19+
lighter -- something like, outside on an overcast day). This bug is
20+
corrected in this release.
2121

2222
Fortunately this turns out to have had a negligible effect on
2323
viridis and the other matplotlib colormaps that were computed using
@@ -33,7 +33,7 @@ Notable changes since v0.1.0 include:
3333
this can be accomplished by instantiating a custom
3434
:class:`CIECAM02Space` object::
3535

36-
from colorspacious import CIECAM02Space, CIECAM02Surround
36+
from colorspacious import CIECAM02Space
3737
# almost, but not quite, the sRGB viewing conditions:
3838
buggy_space = CIECAM02Space(
3939
XYZ100_w="D65",
@@ -62,9 +62,11 @@ Notable changes since v0.1.0 include:
6262
* :func:`colorspacious.deltaE` is now available as a convenience
6363
function for computing the perceptual distance between colors.
6464

65-
* Substantially improved docs.
65+
* Substantially improved docs (i.e. there is now actually a
66+
comprehensive manual).
6667

67-
* Better test coverage.
68+
* Better test coverage (currently at 100% statement and branch
69+
coverage).
6870

6971
* Miscellaneous bug fixes.
7072

0 commit comments

Comments
 (0)