From 62595f522c17ab9a46315d40c4a2aa7a99f7bee2 Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Thu, 8 Jul 2021 17:10:18 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.5.3=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ VERSION | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6e9e5e8..4cc2bdd1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.6.0 (2021-07-08) + +### Fix + +- **visualization**: rename annotator "boiling_region_cropper" as "region_cropper" to semantically allow non-boiling transformers + +### BREAKING CHANGE + +- `DictImageTransformer`s named "boiling_region_cropper" are no longer accepted by visualization functions since they now lack annotators. Please rename them as "region_cropper" to get identical functionality as before. + ## v0.5.3 (2021-07-08) ### Fix diff --git a/VERSION b/VERSION index be14282b..a918a2aa 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.3 +0.6.0 diff --git a/pyproject.toml b/pyproject.toml index 411a321c..ddb31c13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ plugins = "numpy.typing.mypy_plugin" [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.5.3" +version = "0.6.0" version_files = [ "VERSION", ]