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.8 #834

Merged
merged 4 commits into from
Jan 20, 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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v0.8.0] - 2024-01-20

### Added

- Add `explode/2` to `Explorer.DataFrame`. This function is useful to expand
Expand Down Expand Up @@ -857,7 +859,8 @@ properly compare floats.

First release.

[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.7.2...HEAD
[Unreleased]: https://github.com/elixir-explorer/explorer/compare/v0.8.0...HEAD
[v0.8.0]: https://github.com/elixir-explorer/explorer/compare/v0.7.2...v0.8.0
[v0.7.2]: https://github.com/elixir-explorer/explorer/compare/v0.7.1...v0.7.2
[v0.7.1]: https://github.com/elixir-explorer/explorer/compare/v0.7.0...v0.7.1
[v0.7.0]: https://github.com/elixir-explorer/explorer/compare/v0.6.1...v0.7.0
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Inside an Elixir script or [Livebook](https://livebook.dev):

```elixir
Mix.install([
{:explorer, "~> 0.7.0"}
{:explorer, "~> 0.8.0"}
])
```

Expand All @@ -71,7 +71,7 @@ Or in the `mix.exs` file of your application:
```elixir
def deps do
[
{:explorer, "~> 0.7.0"}
{:explorer, "~> 0.8.0"}
]
end
```
Expand Down Expand Up @@ -142,7 +142,7 @@ Your dataframe is going to look like this:
#Explorer.DataFrame<
Polars[3 x 2]
name string ["Everest", "K2", "Aconcagua"]
elevation integer [8848, 8611, 6962]
elevation s64 [8848, 8611, 6962]
>
```

Expand All @@ -160,7 +160,7 @@ Prints:
| Explorer DataFrame: [rows: 3, columns: 2] |
+---------------------+---------------------+
| name | elevation |
| <string> | <integer> |
| <string> | <s64> |
+=====================+=====================+
| Everest | 8848 |
+---------------------+---------------------+
Expand Down Expand Up @@ -197,7 +197,7 @@ The result is going to look like this:
#Explorer.DataFrame<
Polars[2 x 2]
name string ["Everest", "K2"]
elevation integer [8848, 8611]
elevation s64 [8848, 8611]
>
```

Expand All @@ -222,13 +222,13 @@ Rust is going to be installed in the first compilation of the project. Otherwise
install the correct version:

```sh
rustup toolchain install nightly-2023-11-12
rustup toolchain install nightly-2023-12-23
```

You can also use [asdf](https://asdf-vm.com/):

```sh
asdf install rust nightly-2023-11-12
asdf install rust nightly-2023-12-23
```

It's possible that you may need to install [`CMake`](https://cmake.org/) in order to build the project,
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.8.0-dev"
@version "0.8.0"
@dev? String.ends_with?(@version, "-dev")
@force_build? System.get_env("EXPLORER_BUILD") in ["1", "true"]

Expand Down
Loading
Loading