Skip to content

Commit 1175ff9

Browse files
author
Philip Sampaio
authored
Release v0.9.2 (#973)
1 parent 943feeb commit 1175ff9

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [v0.9.2] - 2024-08-27
11+
12+
### Added
13+
14+
- Add a new `:keep` option to the `mutate_with/3` function and `mutate/3` macro.
15+
This option allows users to control which columns are retained in the output
16+
dataframe after a mutation operation. You can use `:all` (the default) or `:none`.
17+
18+
### Fixed
19+
20+
- Fix handling of "LazySeries" with remote dataframes.
21+
- Fix typespecs of `Explorer.Series.cast/2` by adding a `dtype_alias()` type.
22+
1023
## [v0.9.1] - 2024-08-15
1124

1225
### Added
@@ -1092,7 +1105,8 @@ properly compare floats.
10921105

10931106
First release.
10941107

1095-
[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.1...HEAD
1108+
[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.9.2...HEAD
1109+
[v0.9.2]: https://github.com/elixir-explorer/explorer/compare/v0.9.1...v0.9.2
10961110
[v0.9.1]: https://github.com/elixir-explorer/explorer/compare/v0.9.0...v0.9.1
10971111
[v0.9.0]: https://github.com/elixir-explorer/explorer/compare/v0.8.3...v0.9.0
10981112
[v0.8.3]: https://github.com/elixir-explorer/explorer/compare/v0.8.2...v0.8.3

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Explorer.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/elixir-nx/explorer"
5-
@version "0.10.0-dev"
5+
@version "0.9.2"
66
@dev? String.ends_with?(@version, "-dev")
77
@force_build? System.get_env("EXPLORER_BUILD") in ["1", "true"]
88

0 commit comments

Comments
 (0)