From 80251bc7ca26051ca1a3e2bad173a82c35f70c36 Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Sun, 13 Oct 2024 15:03:36 +1300 Subject: [PATCH] Raise package version to 0.2.5. --- colour_hdri/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/colour_hdri/__init__.py b/colour_hdri/__init__.py index def6c0f..765b294 100644 --- a/colour_hdri/__init__.py +++ b/colour_hdri/__init__.py @@ -258,7 +258,7 @@ def __getattr__(self, attribute) -> Any: __major_version__ = "0" __minor_version__ = "2" -__change_version__ = "4" +__change_version__ = "5" __version__ = ".".join((__major_version__, __minor_version__, __change_version__)) try: diff --git a/pyproject.toml b/pyproject.toml index 2c7ecba..18995ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "colour-hdri" -version = "0.2.4" +version = "0.2.5" description = "HDRI processing algorithms for Python" readme = "README.rst" requires-python = ">=3.10,<3.14"