Skip to content

Commit 56f687d

Browse files
authored
0.2.2 release (#370)
1 parent 1e47e3a commit 56f687d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
88

99
### Added
1010

11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
## [0.2.2] - 2024-03-04
20+
21+
### Added
22+
1123
- Avoided for-loop in `EmbeddingEncoder` ([#366](https://github.com/pyg-team/pytorch-frame/pull/366))
1224
- Added `image_embedded` and one tabular image dataset ([#344](https://github.com/pyg-team/pytorch-frame/pull/344))
1325
- Added benchmarking suite for encoders ([#360](https://github.com/pyg-team/pytorch-frame/pull/360))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend="flit_core.buildapi"
44

55
[project]
66
name="pytorch_frame"
7-
version="0.2.1"
7+
version="0.2.2"
88
authors=[
99
{name="PyG Team", email="team@pyg.org"},
1010
]

torch_frame/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import torch_frame.nn # noqa
2020
import torch_frame.gbdt # noqa
2121

22-
__version__ = '0.2.1'
22+
__version__ = '0.2.2'
2323

2424
__all__ = [
2525
'DataFrame',

0 commit comments

Comments
 (0)