From fc85747e6807170b38d6803999fdbbe46242e609 Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Sun, 12 Jun 2022 14:31:54 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.23.7=20=E2=86=92=200.24.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5417b246..73fa4216 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ +## v0.24.0 (2022-06-12) + +### Refactor + +- **preprocessing/hdf5**: use further sliceable dataset methods in `frames_to_hdf5` +- **preprocessing/hdf5**: remove unnecessarily added `indices` parameter +- **preprocessing/hdf5**: rename `batch_size` as `buffer_size` in `frames_to_hdf5` +- **preprocessing/hdf5**: generalize `video_to_hdf5` as `frames_to_hdf5` accepting any dataset of frames +- **preprocessing/hdf5**: make compressing data optional +- **preprocessing/hdf5**: remove SWMR configuration since we will never write to `HDF5SliceableDataset`s +- **preprocessing/hdf5**: make use of the new sliceable interface for videos +- **preprocessing/video**: make `fps` a method in `Video` +- **preprocessing/video**: convert `Video` to a `SliceableDataset` +- **preprocessing/video**: remove unused functionality + +### Feat + +- **datasets/sliceable**: add `enumerate` method to sliceable datasets + ## v0.23.7 (2022-06-11) ### Feat diff --git a/pyproject.toml b/pyproject.toml index d478261b..f51d9fc7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.23.7" +version = "0.24.0" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -162,5 +162,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.23.7" +version = "0.24.0" version_files = ["pyproject.toml:version"]