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"]