Skip to content

Commit

Permalink
Prep for release 0.6 (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmor5 authored Aug 17, 2023
1 parent 1fd2ba0 commit 8fba004
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Then add Axon to your dependencies:
```elixir
def deps do
[
{:axon, "~> 0.5"}
{:axon, "~> 0.6"}
]
end
```
Expand All @@ -135,8 +135,8 @@ You'll also likely want to include an `Nx` compiler such as `EXLA` for any pract
```elixir
def deps do
[
{:axon, "~> 0.5"},
{:exla, "~> 0.5"},
{:axon, "~> 0.6"},
{:exla, "~> 0.6"},
]
end
```
Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Axon.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/axon"
@version "0.5.1"
@version "0.6.0"

def project do
[
Expand Down Expand Up @@ -35,9 +35,9 @@ defmodule Axon.MixProject do
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:exla, "~> 0.5.0", [only: :test] ++ exla_opts()},
{:torchx, "~> 0.5.0", [only: :test] ++ torchx_opts()},
{:nx, "~> 0.5.0", nx_opts()},
{:exla, "~> 0.6.0", [only: :test] ++ exla_opts()},
{:torchx, "~> 0.6.0", [only: :test] ++ torchx_opts()},
{:nx, "~> 0.6.0", nx_opts()},
{:ex_doc, "~> 0.23", only: :docs},
{:table_rex, "~> 3.1.1", optional: true},
{:kino, "~> 0.7", optional: true},
Expand Down

0 comments on commit 8fba004

Please sign in to comment.