Skip to content

Commit 523e7e7

Browse files
authored
Update version in README.md (#15)
* Update version in README.md The version 0.5 was probably copy paste from the original nx repository. At the moment the published version is 0.1 * Add section about guides * update nx_signal version in guides
1 parent e2655a9 commit 523e7e7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to your Mix project:
1717
```elixir
1818
def deps do
1919
[
20-
{:nx_signal, "~> 0.5"}
20+
{:nx_signal, "~> 0.1"}
2121
]
2222
end
2323
```
@@ -26,7 +26,7 @@ You can also use `Mix.install` for standalone development:
2626

2727
```elixir
2828
Mix.install([
29-
{:nx_signal, "~> 0.5"}
29+
{:nx_signal, "~> 0.1"}
3030
])
3131
```
3232

@@ -36,6 +36,10 @@ such as `Torchx` or `EXLA`, you need to explicitly depend on them.
3636
All of `NxSignal`'s functionality is provided through `Nx.Defn`, so things should work out of the
3737
box with different backends and compilers.
3838

39+
## Guides (Livebook)
40+
41+
Check out the "guides" folder in the repo for examples.
42+
3943
## Contributing
4044

4145
Contributions are more than welcome!

guides/filtering.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:nx_signal, "~> 0.5", github: "elixir-nx/nx_signal"},
5+
{:nx_signal, "~> 0.1"},
66
{:vega_lite, "~> 0.1"},
77
{:kino_vega_lite, "~> 0.1"}
88
])

guides/spectrogram.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:nx_signal, ">= 0.0.0", github: "polvalente/nx-signal"},
5+
{:nx_signal, "~> 0.1"},
66
{:vega_lite, "~> 0.1.4"},
77
{:kino_vega_lite, "~> 0.1.1"}
88
])

0 commit comments

Comments
 (0)