Skip to content

Commit 3f1a695

Browse files
weihua916zechengz
andauthored
v0.2.0 release (#298)
will be in after #291 is in. Co-authored-by: Zecheng Zhang <zecheng@kumo.ai>
1 parent 2b59649 commit 3f1a695

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

Diff for: CHANGELOG.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ 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+
20+
## [0.2.0] - 2023-12-15
21+
22+
### Added
23+
1124
- Added more text documentation ([#291](https://github.com/pyg-team/pytorch-frame/pull/291))
1225
- Added `col_to_model_cfg` ([#270](https://github.com/pyg-team/pytorch-frame/pull/270))
1326
- 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/).
5164
- Made `Trompt` output 2-dim embeddings in `forward`
5265
- Renamed `text_embedder_cfg` into `col_to_text_embedder_cfg`
5366

54-
### Deprecated
55-
5667
### Removed
5768

5869
- No manual passing of `in_channels` to `LinearEmbeddingEncoder` for `stype.text_embedded` ([#222](https://github.com/pyg-team/pytorch-frame/pull/222))
5970

60-
### Removed
61-
62-
### Fixed
63-
6471

6572
## [0.1.0] - 2023-10-23
6673

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.1.0"
7+
version="0.2.0"
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.1.0'
21+
__version__ = '0.2.0'
2222

2323
__all__ = [
2424
'DataFrame',

0 commit comments

Comments
 (0)