Skip to content

Commit

Permalink
Imagecat version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tshead committed Mar 19, 2021
1 parent ea36042 commit 50defb6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
---------------------------------

Expand Down
2 changes: 1 addition & 1 deletion imagecat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 50defb6

Please sign in to comment.