Skip to content

Commit

Permalink
Merge pull request #320 from google/v0.1.6
Browse files Browse the repository at this point in the history
Release v0.1.6
  • Loading branch information
Ian Spektor committed Nov 28, 2023
2 parents 69867bd + 608606e commit 3bedc6e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion 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 <gbm@google.com>",
Expand Down
2 changes: 1 addition & 1 deletion temporian/__init__.py
Expand Up @@ -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
Expand Down

0 comments on commit 3bedc6e

Please sign in to comment.