Skip to content

Commit 8fba004

Browse files
authored
Prep for release 0.6 (#521)
1 parent 1fd2ba0 commit 8fba004

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Then add Axon to your dependencies:
125125
```elixir
126126
def deps do
127127
[
128-
{:axon, "~> 0.5"}
128+
{:axon, "~> 0.6"}
129129
]
130130
end
131131
```
@@ -135,8 +135,8 @@ You'll also likely want to include an `Nx` compiler such as `EXLA` for any pract
135135
```elixir
136136
def deps do
137137
[
138-
{:axon, "~> 0.5"},
139-
{:exla, "~> 0.5"},
138+
{:axon, "~> 0.6"},
139+
{:exla, "~> 0.6"},
140140
]
141141
end
142142
```

mix.exs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Axon.MixProject do
22
use Mix.Project
33

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

77
def project do
88
[
@@ -35,9 +35,9 @@ defmodule Axon.MixProject do
3535
# Run "mix help deps" to learn about dependencies.
3636
defp deps do
3737
[
38-
{:exla, "~> 0.5.0", [only: :test] ++ exla_opts()},
39-
{:torchx, "~> 0.5.0", [only: :test] ++ torchx_opts()},
40-
{:nx, "~> 0.5.0", nx_opts()},
38+
{:exla, "~> 0.6.0", [only: :test] ++ exla_opts()},
39+
{:torchx, "~> 0.6.0", [only: :test] ++ torchx_opts()},
40+
{:nx, "~> 0.6.0", nx_opts()},
4141
{:ex_doc, "~> 0.23", only: :docs},
4242
{:table_rex, "~> 3.1.1", optional: true},
4343
{:kino, "~> 0.7", optional: true},

0 commit comments

Comments
 (0)