From b161964bb9ac088a153cab2b08bf418b0060f8bd Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Sun, 13 Oct 2024 12:14:15 +1300 Subject: [PATCH] Raise package version to 0.2.1. --- colour_checker_detection/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/colour_checker_detection/__init__.py b/colour_checker_detection/__init__.py index 1073089..285a4ea 100644 --- a/colour_checker_detection/__init__.py +++ b/colour_checker_detection/__init__.py @@ -64,7 +64,7 @@ __major_version__ = "0" __minor_version__ = "2" -__change_version__ = "0" +__change_version__ = "1" __version__ = ".".join((__major_version__, __minor_version__, __change_version__)) try: diff --git a/pyproject.toml b/pyproject.toml index e26e656..38a89a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "colour-checker-detection" -version = "0.2.0" +version = "0.2.1" description = "Colour checker detection with Python" readme = "README.rst" requires-python = ">=3.10,<3.14"