diff --git a/CHANGELOG.md b/CHANGELOG.md index e6410a71..33e5e83d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ +## v0.25.3 (2022-06-15) + +### Refactor + +- **preprocessing**: remove unnecessary module `preprocessing` by moving its utility functionality to where needed + +### Fix + +- **preprocessing/experiment_video**: add descriptor and JSON serializer for `ExperimentVideo` + ## v0.25.2 (2022-06-15) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 2d462816..b83a4d01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.25.2" +version = "0.25.3" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -163,5 +163,5 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.25.2" +version = "0.25.3" version_files = ["pyproject.toml:version"]