diff --git a/CHANGELOG.md b/CHANGELOG.md index efb246f..a5e3399 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2024/07/24 - RELEASE 2.0.1 +========================== +- Setting default transformation matrix to identity matrix if not provided in the UIM model +- Refactor the schema constants for different schemas + + 2024/07/12 - RELEASE 2.0.0 ========================== - Refactor schema handling in uim.model.semantics.schema package diff --git a/setup.py b/setup.py index 6ef5d9f..65a3a46 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ # The directory containing this file HERE = pathlib.Path(__file__).parent -VERSION: str = "2.0.0" +VERSION: str = "2.0.1" # The text of the README file README = (HERE / "README.md").read_text() diff --git a/uim/__init__.py b/uim/__init__.py index 5dd028c..5c87427 100644 --- a/uim/__init__.py +++ b/uim/__init__.py @@ -29,7 +29,7 @@ __maintainer__ = ["Markus Weber"] __email__ = "markus.weber@wacom.com" __status__ = "beta" -__version__ = "2.0.0" +__version__ = "2.0.1" import logging from typing import Optional