Skip to content

Commit 9390381

Browse files
authored
Merge pull request #338 from google/v0.7.0
Release v0.7.0
2 parents b20a0ad + 86809c0 commit 9390381

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@
88

99
### Fixes
1010

11+
## 0.7.0
12+
13+
### Features
14+
15+
- Add `tp.from_parquet()` and `tp.to_parquet()`.
16+
- Add `EventSet.fillna()` operator.
17+
18+
### Improvements
19+
20+
- Add support for pip build on Windows.
21+
- Documentation improvements.
22+
- Add `timestamps` parameter to `tp.from_pandas()`.
23+
- Add implicit casting in `EventSet.where()` operator.
24+
- Add support for list argument in `EventSet.rename()` operator.
25+
1126
## 0.1.6
1227

1328
### Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "temporian"
3-
version = "0.1.6"
3+
version = "0.7.0"
44
description = "Temporian is a Python package for feature engineering of temporal data, focusing on preventing common modeling errors and providing a simple and powerful API, a first-class iterative development experience, and efficient and well-tested implementations of common and not-so-common temporal data preprocessing functions."
55
authors = [
66
"Mathieu Guillame-Bert, Braulio Ríos, Guillermo Etchebarne, Ian Spektor, Richard Stotz <gbm@google.com>",

temporian/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# from temporian.module import submodule as _submodule
2626
# del _submodule
2727

28-
__version__ = "0.1.6"
28+
__version__ = "0.7.0"
2929

3030
# Register all operator implementations
3131
from temporian.implementation.numpy import operators as _impls

0 commit comments

Comments
 (0)