From 7f412773f33c7f464fcc12c6e3bff1a7c2061ee2 Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Thu, 16 Jun 2022 00:41:09 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.25.5=20=E2=86=92=200.26.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 16 ++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ae383a..5c355b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ +## v0.26.0 (2022-06-16) + +### Fix + +- **scripts/make_boiling_processors**: remove conversion to float32 +- **scripts**: move random cropper to the "preprocessing" group since it is mandatory to enforce equal image size + +### Refactor + +- **preprocessing/hdf5**: remove compression option +- **preprocessing/video**: improve `VideoFrame` type annotations +- **preprocessing/video**: replace PIMS with Decord +- remove more unused functionality +- **preprocessing/transformers**: remove unnecessary class `FeatureTransformer` and adapt module +- **preprocessing/transformers**: remove unused class `KeyedFeatureTransformer` + ## v0.25.5 (2022-06-15) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 49b0345b..58ba0c2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.25.5" +version = "0.26.0" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -158,5 +158,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.25.5" +version = "0.26.0" version_files = ["pyproject.toml:version"]