From d75fff4ce990f1e2883bfb1f98fb8bfd48a114aa Mon Sep 17 00:00:00 2001 From: Weihua Hu Date: Mon, 8 Jul 2024 14:51:04 -0700 Subject: [PATCH 1/2] update --- CHANGELOG.md | 17 ++++++++++++----- torch_frame/__init__.py | 2 +- 2 files changed, 13 insertions(+), 6 deletions(-) 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/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', From 86a607ad486f750a34cab0b793c65dc89a0ff710 Mon Sep 17 00:00:00 2001 From: Weihua Hu Date: Mon, 8 Jul 2024 14:56:30 -0700 Subject: [PATCH 2/2] update --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"}, ]