diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d44013c..35eddc3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +## [0.2.4] - 2024-01-16 + +### Added + - Added an example for training `Trompt` on multiple GPUs ([#474](https://github.com/pyg-team/pytorch-frame/pull/474)) - Added support for materializing dataset for train and test dataframe separately([#470](https://github.com/pyg-team/pytorch-frame/issues/470)) - Added support for PyTorch 2.5 ([#464](https://github.com/pyg-team/pytorch-frame/pull/464)) diff --git a/pyproject.toml b/pyproject.toml index 6d384346..77401fe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend="flit_core.buildapi" [project] name="pytorch-frame" -version="0.2.3" +version="0.2.4" authors=[ {name="PyG Team", email="team@pyg.org"}, ] diff --git a/torch_frame/__init__.py b/torch_frame/__init__.py index 7161acc3..6129240b 100644 --- a/torch_frame/__init__.py +++ b/torch_frame/__init__.py @@ -33,7 +33,7 @@ torch_frame.data.stats.StatType, ]) -__version__ = '0.2.3' +__version__ = '0.2.4' __all__ = [ 'DataFrame',