From 55c27bffc2d6f504a33616c2487b44b74b637f7a Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Mon, 25 Jul 2022 09:41:12 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.33.1=20=E2=86=92=200.33.2?= 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 2979eb5c..89513100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ +## v0.33.2 (2022-07-25) + +### Refactor + +- **preprocessing/image_datasets**: improve error message +- **scripts/connect_gpus**: remove unnecessary `else` clauses +- **preprocessing/experiment_video**: remove unnecessary parameter `recalculate` from `make_dataframe` +- **preprocessing/experiment_video**: extract variable in `_sync_dataframes` +- **datasets/sliceable**: reduce usage of explicit type-annotations in `SliceableDataset.split` +- **model/definitions**: rename intermediary layers from `x` to `outputs` + +### Feat + +- **management/allocators**: support `suffix` parameter to set filename suffix when saving objects with `JSONTableAllocator` and `default_table_allocator` + ## v0.33.1 (2022-07-13) ## v0.33.0 (2022-07-13) diff --git a/pyproject.toml b/pyproject.toml index b611c1cc..db18f8b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.33.1" +version = "0.33.2" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -148,5 +148,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.33.1" +version = "0.33.2" version_files = ["pyproject.toml:version"]