Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.1.6 #320

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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