File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
10931106First 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments