From 50defb6e61155904b0986c4c8b7b03b1714704fd Mon Sep 17 00:00:00 2001 From: "Timothy M. Shead" Date: Fri, 19 Mar 2021 11:03:05 -0600 Subject: [PATCH] Imagecat version 0.5.0 --- docs/release-notes.rst | 10 ++++++++++ imagecat/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.rst b/docs/release-notes.rst index e8b5b65..75e8e4d 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -7,6 +7,16 @@ Release Notes ============= +Imagecat 0.5.0 - March 19, 2020 +------------------------------- + +* Cryptomatte operator works with a wider range of files, and better matches the behavior of other implementations. +* Added an option to extract clown mattes from the Cryptomatte operator, with caller control over which mattes to include. +* Missing dependencies cause failures at run time instead of import time. +* Replaced the `rgb2gray` operator with `dot`, which can created weighted combinations of layers with any depth. +* Added new layer roles for RGBA, matte, luminance, depth, UV, position, velocity, and normal data, and subsets of RGB channels. +* Substantial reorganization and cleanup of the documentation. + Imagecat 0.4.0 - December 9, 2020 --------------------------------- diff --git a/imagecat/__init__.py b/imagecat/__init__.py index b179777..6eb7b2a 100644 --- a/imagecat/__init__.py +++ b/imagecat/__init__.py @@ -16,7 +16,7 @@ """Image processing functionality based on Graphcat computational graphs, http://graphcat.readthedocs.io. """ -__version__ = "0.5.0-dev" +__version__ = "0.5.0" import itertools import logging diff --git a/setup.py b/setup.py index 195919c..983d9c9 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ description="Flexible, high-quality tools for procedural image editing.", install_requires=[ "Pillow>=8.0.0", - "graphcat>=0.10.0", + "graphcat>=1.0.0", "mmh3", "numpy>=1.17", "scikit-image",