From 86809c017a09993782e9b48c713585c1bc87301d Mon Sep 17 00:00:00 2001 From: Ian Spektor Date: Fri, 12 Jan 2024 12:06:00 -0300 Subject: [PATCH] update changelog, update version number --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- temporian/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aeb86e73..843f81c36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,21 @@ ### Fixes +## 0.7.0 + +### Features + +- Add `tp.from_parquet()` and `tp.to_parquet()`. +- Add `EventSet.fillna()` operator. + +### Improvements + +- Add support for pip build on Windows. +- Documentation improvements. +- Add `timestamps` parameter to `tp.from_pandas()`. +- Add implicit casting in `EventSet.where()` operator. +- Add support for list argument in `EventSet.rename()` operator. + ## 0.1.6 ### Features diff --git a/pyproject.toml b/pyproject.toml index 0f87aef40..7f8fe2b30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temporian" -version = "0.1.6" +version = "0.7.0" 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." authors = [ "Mathieu Guillame-Bert, Braulio RĂ­os, Guillermo Etchebarne, Ian Spektor, Richard Stotz ", diff --git a/temporian/__init__.py b/temporian/__init__.py index b5b622c5d..9d3c5b369 100644 --- a/temporian/__init__.py +++ b/temporian/__init__.py @@ -25,7 +25,7 @@ # from temporian.module import submodule as _submodule # del _submodule -__version__ = "0.1.6" +__version__ = "0.7.0" # Register all operator implementations from temporian.implementation.numpy import operators as _impls