From 082693d1b33305e24f92d79db89686adc0ca71b2 Mon Sep 17 00:00:00 2001 From: Markus Weber Date: Wed, 24 Jul 2024 20:55:42 +0200 Subject: [PATCH] New version. --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- uim/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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