Skip to content

Commit f746974

Browse files
authored
v0.2.1 release (#340)
1 parent 34964e6 commit f746974

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Diff for: CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77
## [Unreleased]
88

9+
### Added
10+
11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
20+
## [0.2.1] - 2024-01-16
21+
922
### Added
1023
- Support more stypes in `LinearModelEncoder` ([#325](https://github.com/pyg-team/pytorch-frame/pull/325))
1124
- Added `stype_encoder_dict` to some models ([#319](https://github.com/pyg-team/pytorch-frame/pull/319))

Diff for: pyproject.toml

+1-1
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.0"
7+
version="0.2.1"
88
authors=[
99
{name="PyG Team", email="team@pyg.org"},
1010
]

Diff for: torch_frame/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import torch_frame.nn # noqa
1919
import torch_frame.gbdt # noqa
2020

21-
__version__ = '0.2.0'
21+
__version__ = '0.2.1'
2222

2323
__all__ = [
2424
'DataFrame',

0 commit comments

Comments
 (0)