diff --git a/CHANGELOG.md b/CHANGELOG.md index 47cc6f22..16ffe5de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + + +## [0.2.0] - 2023-12-15 + +### Added + - Added more text documentation ([#291](https://github.com/pyg-team/pytorch-frame/pull/291)) - Added `col_to_model_cfg` ([#270](https://github.com/pyg-team/pytorch-frame/pull/270)) - Support saving/loading of GBDT models ([#269](https://github.com/pyg-team/pytorch-frame/pull/269)) @@ -51,16 +64,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Made `Trompt` output 2-dim embeddings in `forward` - Renamed `text_embedder_cfg` into `col_to_text_embedder_cfg` -### Deprecated - ### Removed - No manual passing of `in_channels` to `LinearEmbeddingEncoder` for `stype.text_embedded` ([#222](https://github.com/pyg-team/pytorch-frame/pull/222)) -### Removed - -### Fixed - ## [0.1.0] - 2023-10-23 diff --git a/pyproject.toml b/pyproject.toml index f5d8cc00..46e05415 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend="flit_core.buildapi" [project] name="pytorch_frame" -version="0.1.0" +version="0.2.0" authors=[ {name="PyG Team", email="team@pyg.org"}, ] diff --git a/torch_frame/__init__.py b/torch_frame/__init__.py index 4fbfcfec..f1fcb47f 100644 --- a/torch_frame/__init__.py +++ b/torch_frame/__init__.py @@ -18,7 +18,7 @@ import torch_frame.nn # noqa import torch_frame.gbdt # noqa -__version__ = '0.1.0' +__version__ = '0.2.0' __all__ = [ 'DataFrame',