diff --git a/CHANGES.md b/CHANGES.md index 57fe58a..d05478e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ -v1.0.4 (unreleased) +v1.0.5 (8-Sep-2020) =================== +- New color blind safe color cycles (``high-contrast.mplstyle``, ``light.mplstyle``). Taken from [Paul Tol's website](https://personal.sron.nl/~pault/). +- Fixed color order in ``muted.mplstyle``, ``vibrant.mplstyle``, and ``bright.mplstyle``. + +v1.0.4 (14-Aug-2020) +==================== + - New style: ``grid`` - this will add grid lines - ``science`` style: diff --git a/README.md b/README.md index 0d4141b..15c9bd6 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ You can also combine these styles with the other styles that come with Matplotli **Note:** See the ``examples/`` directory for more! -Color-blind Safe Color Cycles +Color Blind Safe Color Cycles ----------------------------- The ``bright`` color cycle (7 colors): diff --git a/setup.py b/setup.py index 38e7cd5..46472eb 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def __init__(self, *args, **kwargs): setup( name='SciencePlots', - version='1.0.4', + version='1.0.5', author="John Garrett", author_email="garrettj403@gmail.com", description="Format Matplotlib for scientific plotting",