diff --git a/CHANGELOG.md b/CHANGELOG.md index 19829e224..2aeb86e73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,31 @@ ### Features -- Support for timezone argument in all calendar operators. +### Improvements + +### Fixes + +## 0.1.6 + +### Features + +- Support for `timezone` argument in all calendar operators. +- Add `drop()` operator to drop features. +- Add `assign()` operator to assign features. +- Add `before()` and `after()` operators. ### Improvements +- Improve error messages for type mismatch in window operators. +- Improve structure of docs site. +- Support exporting timestamps as datetimes in `tp.to_pandas()`. +- Remove inputs limit in `glue()` and `combine()`. + ### Fixes - Use `wday=0` for Mondays in `tick_calendar` (like `calendar_day_of_week`). - Support bool in `DType.missing_value()`. +- Show `EventSet`'s magic methods in docs. ## 0.1.5 diff --git a/pyproject.toml b/pyproject.toml index 3f6a43612..0f87aef40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "temporian" -version = "0.1.5" +version = "0.1.6" 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 9a13433a0..09afdc81a 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.5" +__version__ = "0.1.6" # Register all operator implementations from temporian.implementation.numpy import operators as _impls