From 63ac41249874bb794ca0d2acabc6cff49f53e492 Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Sun, 27 Feb 2022 14:24:07 +1300 Subject: [PATCH] Raise package version to 0.1.3. --- colour_checker_detection/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/colour_checker_detection/__init__.py b/colour_checker_detection/__init__.py index d0865b4..1db1e2e 100644 --- a/colour_checker_detection/__init__.py +++ b/colour_checker_detection/__init__.py @@ -53,7 +53,7 @@ __major_version__ = "0" __minor_version__ = "1" -__change_version__ = "2" +__change_version__ = "3" __version__ = ".".join( (__major_version__, __minor_version__, __change_version__) ) diff --git a/pyproject.toml b/pyproject.toml index cce7f05..474778e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "colour-checker-detection" -version = "0.1.2" +version = "0.1.3" description = "Colour checker detection with Python" license = "BSD-3-Clause" authors = [ "Colour Developers " ] diff --git a/setup.py b/setup.py index 3520200..2160faf 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ setup( name="colour-checker-detection", - version="0.1.2", + version="0.1.3", description="Colour checker detection with Python", long_description=codecs.open("README.rst", encoding="utf8").read(), author="Colour Developers",