diff --git a/CHANGELOG.md b/CHANGELOG.md index 7529627de..7d17debb4 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.3] - 2024-07-08 + +### Added + - Added `MovieLens 1M` dataset ([#397](https://github.com/pyg-team/pytorch-frame/pull/397)) - Added light-weight MLP ([#372](https://github.com/pyg-team/pytorch-frame/pull/372)) - Added R^2 metric ([#403](https://github.com/pyg-team/pytorch-frame/pull/403)) @@ -16,11 +28,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Updated `ExcelFormer` implementation and related scripts ([#391](https://github.com/pyg-team/pytorch-frame/pull/391)) -### Deprecated - -### Removed - -### Fixed ## [0.2.2] - 2024-03-04 diff --git a/pyproject.toml b/pyproject.toml index 7f8d44d36..a611688ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend="flit_core.buildapi" [project] name="pytorch_frame" -version="0.2.2" +version="0.2.3" authors=[ {name="PyG Team", email="team@pyg.org"}, ] diff --git a/torch_frame/__init__.py b/torch_frame/__init__.py index fc4d57c88..7aa3f9904 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.2' +__version__ = '0.2.3' __all__ = [ 'DataFrame',