From c7bad3e94e8189f5272f1a9d1e81abcd5ca320ca Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Tue, 12 Jul 2022 22:51:01 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.30.20=20=E2=86=92=200.31.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9d93e35..0bf7bf6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ +## v0.31.0 (2022-07-12) + +### Refactor + +- **utils**: move `unsort` to `utils.iterutils` +- **preprocessing/image**: remove unused image normalization preprocessing function +- **utils/utils**: remove unused utility function `indexify` +- **model/definitions**: remove unused custom models + +### Feat + +- **datasets/sliceable**: add support for sliceable dataset caching +- **automl**: define auto-tunable block for image normalization +- **preprocessing/numpy**: make `frames_to_numpy` lazier by not writing to disk and flushing instead of accumulating all data in memory + ## v0.30.20 (2022-07-06) ### Fix diff --git a/pyproject.toml b/pyproject.toml index b7ca023a..f41ed41b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.30.20" +version = "0.31.0" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -149,5 +149,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.30.20" +version = "0.31.0" version_files = ["pyproject.toml:version"]