Skip to content

Commit 98ad250

Browse files
Prep for 0.11.1 release (#1116)
* Bump version from 0.11.0 to 0.11.1 * Update changelog for 0.11.1 * Tweaks to RELEASE.md * One more day
1 parent 709f09e commit 98ad250

File tree

5 files changed

+31
-7
lines changed

5 files changed

+31
-7
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.11.1] - 2025-08-17
11+
12+
### Added
13+
14+
* `Explorer.DataFrame.dump_ipc_schema`
15+
* `Explorer.DataFrame.dump_ipc_record_batch`
16+
* `Explorer.Series.cumulative_count`
17+
* `:stable` option for `Explorer.DataFrame.group_by`
18+
19+
### Fixed
20+
21+
* Fix printing lazy data frame with new default print options (as of v0.11.0)
22+
* Remove print from dataframe test
23+
* Fix mutate docs formatting
24+
25+
### New Contributors
26+
27+
* @WolfDan made their first contribution in https://github.com/elixir-explorer/explorer/pull/1103
28+
29+
### Full Changelog
30+
31+
https://github.com/elixir-explorer/explorer/compare/v0.11.0...v0.11.1
32+
1033
## [v0.11.0] - 2025-07-12
1134

1235
### Added

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Inside an Elixir script or [Livebook](https://livebook.dev):
6262

6363
```elixir
6464
Mix.install([
65-
{:explorer, "~> 0.11.0"}
65+
{:explorer, "~> 0.11.1"}
6666
])
6767
```
6868

@@ -71,15 +71,15 @@ Or in the `mix.exs` file of your application:
7171
```elixir
7272
def deps do
7373
[
74-
{:explorer, "~> 0.11.0"}
74+
{:explorer, "~> 0.11.1"}
7575
]
7676
end
7777
```
7878

7979
Explorer will download a precompiled version of its native code upon installation. You can force a local build by setting the environment variable `EXPLORER_BUILD=1` and including `:rustler` as a dependency:
8080

8181
```elixir
82-
{:explorer, "~> 0.11.0", system_env: %{"EXPLORER_BUILD" => "1"}},
82+
{:explorer, "~> 0.11.1", system_env: %{"EXPLORER_BUILD" => "1"}},
8383
{:rustler, ">= 0.0.0"}
8484
```
8585

RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ releasing is a bit more involved than it would be otherwise.
77
1. Pick the new release `version`.
88

99
* We follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
10+
* Should be the current version in `mix.exs` with `-dev` removed.
1011

1112
1. Begin drafting a new release.
1213

@@ -20,7 +21,7 @@ releasing is a bit more involved than it would be otherwise.
2021
1. Open a PR with any changes needed for the release. Must include:
2122

2223
* Updating the `version` in `mix.exs`
23-
* Updating the `version` any other files that reference it, like
24+
* Updating the `version` in any other files that reference it, like
2425
* `README.md` (multiple places)
2526
* `notebooks/exploring_explorer.livemd`
2627
* Updating the `CHANGELOG.md` to reflect the release

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.11.1-dev"
5+
@version "0.11.1"
66
@dev? String.ends_with?(@version, "-dev")
77
@force_build? System.get_env("EXPLORER_BUILD") in ["1", "true"]
88

notebooks/exploring_explorer.livemd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
```elixir
66
Mix.install([
7-
{:explorer, "~> 0.11.0"},
8-
{:kino, "~> 0.16.0"}
7+
{:explorer, "~> 0.11.1"},
8+
{:kino, "~> 0.16.1"}
99
])
1010
```
1111

0 commit comments

Comments
 (0)