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.9.1 #962

Merged
merged 1 commit into from
Aug 15, 2024
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
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.9.1] - 2024-08-15

### Added

- Add support for saving to the cloud using streaming and the IPC format.
This will enable saving a lazy frame to the cloud without loading it
entirely in memory. It only supports saves to S3-compatible storage services.

### Changed

- Force garbage collection on remote gc.

### Fixed

- Re-enable support for saving to the cloud using streaming and the Parquet format.
It's a fix from the release of `v0.9.0` that disabled this feature.

- Fix overwrite of dtypes for `Explorer.DataFrame.load_csv/2`.
This was a regression introduced in `v0.9.0`.

## [v0.9.0] - 2024-07-26

### Added
Expand Down Expand Up @@ -1072,7 +1092,8 @@ properly compare floats.

First release.

[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.0...HEAD
[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.1...HEAD
[v0.9.1]: https://github.com/elixir-explorer/explorer/compare/v0.9.0...v0.9.1
[v0.9.0]: https://github.com/elixir-explorer/explorer/compare/v0.8.3...v0.9.0
[v0.8.3]: https://github.com/elixir-explorer/explorer/compare/v0.8.2...v0.8.3
[v0.8.2]: https://github.com/elixir-explorer/explorer/compare/v0.8.1...v0.8.2
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Explorer.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/explorer"
@version "0.10.0-dev"
@version "0.9.1"
@dev? String.ends_with?(@version, "-dev")
@force_build? System.get_env("EXPLORER_BUILD") in ["1", "true"]

Expand Down
Loading