Skip to content

Commit

Permalink
Prepare for 0.3.1 release (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
cigrainger authored Sep 9, 2022
1 parent cede34d commit c44d083
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1]
## [0.3.1] - 2022-09-09

### Fixed

Expand Down Expand Up @@ -99,7 +99,6 @@ properly compare floats.

First release.

[Unreleased]: https://github.com/elixir-nx/explorer/compare/v0.2.0...HEAD
[v0.2.0]: https://github.com/elixir-nx/explorer/compare/v0.1.1...v0.2.0
[v0.1.1]: https://github.com/elixir-nx/explorer/compare/v0.1.0...v0.1.1
[v0.1.0]: https://github.com/elixir-nx/explorer/releases/tag/v0.1.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ In order to use `Explorer`, you will need Elixir installed. Then create an
Elixir project via the `mix` build tool:

```
$ mix new my_app
mix new my_app
```

Then you can add `Explorer` as dependency in your `mix.exs`.

```elixir
def deps do
[
{:explorer, "~> 0.3.0"}
{:explorer, "~> 0.3.1"}
]
end
```
Expand All @@ -56,7 +56,7 @@ Alternatively, inside a script or Livebook:

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

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.3.1-dev"
@version "0.3.1"

def project do
[
Expand Down
2 changes: 1 addition & 1 deletion notebooks/exploring_explorer.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Connect to a `Mix` project with `Explorer` installed or:

```elixir
Mix.install([
{:explorer, "~> 0.3.0"},
{:explorer, "~> 0.3.1"},
{:kino, "~> 0.4.1"}
])
```
Expand Down

0 comments on commit c44d083

Please sign in to comment.