Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mickel8 committed Oct 8, 2024
1 parent 024b737 commit 6c9fd9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ xav-*.tar
/tmp/

.vscode/
ffmpeg_build/
ffmpeg_build/
.elixir_ls/
_dialyzer/
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ Make sure you have installed FFMpeg (ver. 4.x - 7.x) development packages on you
```elixir
def deps do
[
{:xav, "~> 0.5.1"}
{:xav, "~> 0.6.0"},
# Add Nx if you want to have Xav.Frame.to_nx/1
{:nx, ">= 0.0.0"}
]
end
```
Expand Down
5 changes: 3 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Xav.MixProject do
use Mix.Project

@version "0.5.1"
@version "0.6.0"
@source_url "https://github.com/elixir-webrtc/xav"

def project do
Expand All @@ -22,7 +22,8 @@ defmodule Xav.MixProject do
# dialyzer
dialyzer: [
plt_local_path: "_dialyzer",
plt_core_path: "_dialyzer"
plt_core_path: "_dialyzer",
plt_add_apss: [:nx]
],

# code coverage
Expand Down

0 comments on commit 6c9fd9a

Please sign in to comment.