Skip to content

Commit

Permalink
Release v0.9.2 (#973)
Browse files Browse the repository at this point in the history
  • Loading branch information
philss authored Aug 27, 2024
1 parent 943feeb commit 1175ff9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.9.2] - 2024-08-27

### Added

- Add a new `:keep` option to the `mutate_with/3` function and `mutate/3` macro.
This option allows users to control which columns are retained in the output
dataframe after a mutation operation. You can use `:all` (the default) or `:none`.

### Fixed

- Fix handling of "LazySeries" with remote dataframes.
- Fix typespecs of `Explorer.Series.cast/2` by adding a `dtype_alias()` type.

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

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

First release.

[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.1...HEAD
[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.2...HEAD
[v0.9.2]: https://github.com/elixir-explorer/explorer/compare/v0.9.1...v0.9.2
[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
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.2"
@dev? String.ends_with?(@version, "-dev")
@force_build? System.get_env("EXPLORER_BUILD") in ["1", "true"]

Expand Down

0 comments on commit 1175ff9

Please sign in to comment.