Skip to content

Commit

Permalink
v0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa-xu committed Nov 11, 2022
1 parent 7ff0bca commit 18ff857
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 23 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## v0.1.17-dev (main)
[Browse the Repository](https://github.com/cocoa-xu/evision)
## v0.1.17 (2022-11-11)
[Browse the Repository](https://github.com/cocoa-xu/evision/tree/v0.1.17) | [Released Assets](https://github.com/cocoa-xu/evision/releases/tag/v0.1.17)

## Fixes
- [py_src] Fixed a code generation bug when all the input arguments of a function are optional.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Then you can add `evision` as dependency in your `mix.exs`.
```elixir
def deps do
[
{:evision, "~> 0.1.16"}
{:evision, "~> 0.1.17"}
]
end
```
Expand All @@ -201,11 +201,11 @@ The following environment variables can be set based on your needs.
(Note that precompiled binaries do not use FFmpeg. If you'd like to use FFmpeg, please compile from source (please see instructions in the next section) and set corresponding environment variables. We're considering this option at the moment.)

#### Important notes
It is recommended to use `:evision` from hex.pm. Currently "0.1.7" to "0.1.9", and "0.1.11" to "0.1.16" are available on hex.pm,
It is recommended to use `:evision` from hex.pm. Currently "0.1.7" to "0.1.9", and "0.1.11" to "0.1.17" are available on hex.pm,
```elixir
def deps do
[
{:evision, "~> 0.1.16"}
{:evision, "~> 0.1.17"}
]
end
```
Expand Down Expand Up @@ -257,7 +257,7 @@ export EVISION_PREFER_PRECOMPILED=false
For livebook users,
```elixir
Mix.install([
{:evision, "~> 0.1.16"}
{:evision, "~> 0.1.17"}
], system_env: [
{"EVISION_PREFER_PRECOMPILED", "false"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/cifar10.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:req, "~> 0.3"},
{:torchx, "~> 0.3"},
{:nx, "~> 0.3", override: true},
Expand Down
2 changes: 1 addition & 1 deletion examples/densenet121_benchmark.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/dnn-googlenet.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/find_and_draw_contours.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/getting_started.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/ml-decision_tree_and_random_forest.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:scidata, "~> 0.1"},
{:nx, "~> 0.3", override: true},
Expand Down
2 changes: 1 addition & 1 deletion examples/ml-svm.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/pca.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/photo-hdr.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/qrcode.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/stitching.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/sudoku.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

```elixir
Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"},
{:torchx, "~> 0.4"},
Expand Down
2 changes: 1 addition & 1 deletion examples/warp_perspective.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
2 changes: 1 addition & 1 deletion examples/warp_polar.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# System.put_env("EVISION_PREFER_PRECOMPILED", "false")

Mix.install([
{:evision, "~> 0.1.16"},
{:evision, "~> 0.1.17"},
{:kino, "~> 0.7"},
{:req, "~> 0.3"}
])
Expand Down
5 changes: 3 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ defmodule Evision.MixProject.Metadata do
@moduledoc false

def app, do: :evision
def version, do: "0.1.17-dev"
def last_released_version, do: "0.1.16"
def version, do: "0.1.17"
def last_released_version, do: "0.1.17"
def github_url, do: "https://github.com/cocoa-xu/evision"
def opencv_version, do: "4.6.0"
# only means compatible. need to write more tests
Expand All @@ -18,6 +18,7 @@ defmodule Mix.Tasks.Compile.EvisionPrecompiled do
alias Evision.MixProject.Metadata

@available_versions [
"0.1.17",
"0.1.16",
"0.1.15",
"0.1.14",
Expand Down
2 changes: 1 addition & 1 deletion src/evision.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, evision,
[{description, "OpenCV-Erlang/Elixir binding."},
{vsn, "0.1.16"},
{vsn, "0.1.17"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 18ff857

Please sign in to comment.