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

Prepare changelog for v0.5.1 #508

Merged
merged 1 commit into from
Feb 17, 2023
Merged
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
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,48 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.5.1] - 2023-02-17

### Added

- Add boolean dtype to `Series.in/2`.
- Add binary dtype to `Series.in/2`.
- Add `Series.day_of_week/1`.

- Allow `Series.fill_missing/2` to:
- receive `:infinity` and `:neg_infinity` values.
- receive date and datetime values.
- receive binary values.

- Add support for `time` dtype.
- Add version of `Series.pow/2` that accepts series on both sides.
- Allow `Series.from_list/2` to receive `:nan`, `:infinity` and `:neg_infinity` atoms.
- Add `Series.to_date/1` and `Series.to_time/1` for datetime series.
- Allow casting of string series to category.
- Accept tensors when creating a new dataframe.
- Add compatibility with Nx v0.5.
- Add support for Nx's serialize and deserialize.

- Add the following function implementations for the Polars' Lazy dataframe backend:
- `arrange_with`
- `concat_columns`
- `concat_rows`
- `distinct`
- `drop_nil`
- `filter_with`
- `join`
- `mutate_with`
- `pivot_longer`
- `rename`
- `summarise_with`
- `to_parquet`

Only `summarise_with` supports groups for this version.

### Changed

- Require version of Rustler to be `~> 0.27.0`, which mirrors the NIF requirement.

## [v0.5.0] - 2023-01-12

### Added
Expand Down Expand Up @@ -247,6 +289,7 @@ properly compare floats.

First release.

[v0.5.1]: https://github.com/elixir-nx/explorer/compare/v0.5.0...v0.5.1
[v0.5.0]: https://github.com/elixir-nx/explorer/compare/v0.4.0...v0.5.0
[v0.4.0]: https://github.com/elixir-nx/explorer/compare/v0.3.1...v0.4.0
[v0.3.1]: https://github.com/elixir-nx/explorer/compare/v0.3.0...v0.3.1
Expand Down