diff --git a/CHANGELOG.md b/CHANGELOG.md index 61785bc7..a8d9092a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ +## v0.30.13 (2022-07-03) + +### Fix + +- **automl/tuners**: save models at the end of the training + +### Refactor + +- **model/definitions**: simplify model definitions to use `Literal`s instead of enums + ## v0.30.12 (2022-07-03) ### Fix diff --git a/pyproject.toml b/pyproject.toml index b5d28b2a..848ec5c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.30.12" +version = "0.30.13" 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.30.12" +version = "0.30.13" version_files = ["pyproject.toml:version"]