From 51f0fe5ab9969df5e70fbbf7ab3e5c794f80385c Mon Sep 17 00:00:00 2001 From: Ruan Comelli Date: Mon, 12 Sep 2022 10:53:17 -0300 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.34.18=20=E2=86=92=200.34.19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 25 +++++++++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6429374..db7a2de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ +## v0.34.19 (2022-09-12) + +### Fix + +- **preprocessing/transformers**: fix type annotation for `Transformer.__ror__` + +### Refactor + +- **preprocessing/transformers**: simplify string conversion +- **utils/collections**: simplify `KeyedSet` methods +- move `utils/described.py` to `describe/described.py` +- move `utils/descriptions.py` to `describe/describers.py` +- re-use matmul operator with `Pack`s +- **utils/functional**: remove barely used method `map_values` +- **utils/functional**: remove unused constructor `Pack.pack` +- **utils/functional**: remove unused method `Pack.omit` +- **utils/table_dispatch**: remove unused typevar `Predicate` +- **utils/lazy**: improve type annotations + +### Feat + +- add new subpackage `describe` +- **datasets/sliceable**: add `sample` method +- add lazy transformations + ## v0.34.18 (2022-09-10) ## v0.34.17 (2022-09-10) diff --git a/pyproject.toml b/pyproject.toml index b83a1044..c2a31ca0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "boiling-learning" -version = "0.34.18" +version = "0.34.19" description = "Deep learning models for phase-change quantification and classification." authors = [ {name = "Ruan Comelli", email = "ruancomelli@gmail.com"} @@ -150,7 +150,7 @@ plugins = [ [tool.commitizen] tag_format = "v$major.$minor.$patch$prerelease" update_changelog_on_bump = true -version = "0.34.18" +version = "0.34.19" version_files = ["pyproject.toml:version"] [tool.pylint.main]