diff --git a/README.rst b/README.rst index ff26b73..b8003f2 100644 --- a/README.rst +++ b/README.rst @@ -76,10 +76,10 @@ changelog ========= ================================================================================ Version Description ========= ================================================================================ +1.0.6 * Fix a matplotlib deprecation + * Fix RTD documentation 1.0.5 * remove Python3.6 and added Python3.10 to CI action * Fix issue in setup reported in https://github.com/cokelaer/colormap/pull/14 * add requirements in MANIFEST * applied black on all files - * Fix a matplotlib deprecation - * Fix RTD documentation ========= ================================================================================ diff --git a/setup.py b/setup.py index 12a0555..1ddcbdb 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ _MAJOR = 1 _MINOR = 0 -_MICRO = 5 +_MICRO = 6 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR)