diff --git a/CHANGELOG.md b/CHANGELOG.md index 06d76e64..bc7fb838 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +## [0.2.2] - 2024-03-04 + +### Added + - Avoided for-loop in `EmbeddingEncoder` ([#366](https://github.com/pyg-team/pytorch-frame/pull/366)) - Added `image_embedded` and one tabular image dataset ([#344](https://github.com/pyg-team/pytorch-frame/pull/344)) - Added benchmarking suite for encoders ([#360](https://github.com/pyg-team/pytorch-frame/pull/360)) diff --git a/pyproject.toml b/pyproject.toml index 730612f1..4be9ea29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend="flit_core.buildapi" [project] name="pytorch_frame" -version="0.2.1" +version="0.2.2" authors=[ {name="PyG Team", email="team@pyg.org"}, ] diff --git a/torch_frame/__init__.py b/torch_frame/__init__.py index aaf82c71..fc4d57c8 100644 --- a/torch_frame/__init__.py +++ b/torch_frame/__init__.py @@ -19,7 +19,7 @@ import torch_frame.nn # noqa import torch_frame.gbdt # noqa -__version__ = '0.2.1' +__version__ = '0.2.2' __all__ = [ 'DataFrame',