diff --git a/CHANGES.rst b/CHANGES.rst index f303ad0..7ae70d4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,21 @@ ColorDetect Changelog ===================== + +.. _1.3.0: +1.3.0 (02-02-2021) +==================== + +Features +-------- + +- Add a return of human readable colors. + +Documentation +------------- + +- Update ColorDetect module documentation to show method params + .. _1.3.0rc: 1.3.0rc (18-01-2021) ==================== diff --git a/colordetect/color_detect.py b/colordetect/color_detect.py index 260ef4a..d626fcf 100644 --- a/colordetect/color_detect.py +++ b/colordetect/color_detect.py @@ -47,9 +47,7 @@ def __init__(self, image): self.color_description = {} - def get_color_count( - self, color_count: int = 5, color_format: str = "human_readable" - ) -> dict: + def get_color_count(self, color_count: int = 5, color_format: str = "human_readable") -> dict: """ .. _get_color_count: get_color_count diff --git a/docs/conf.py b/docs/conf.py index 41d2038..afdc166 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = "Marvin Kweyu" # The full version, including alpha/beta/rc tags -release = "1.3.0rc" +release = "1.3.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 91e420a..80dd4dc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ColorDetect", - version="1.3.0rc", + version="1.3.0", author="Marvin Kweyu", author_email="mkweyu1@gmail.com", description="Detect and recognize colors in images or video",