Skip to content

Commit

Permalink
v0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa-xu committed Sep 27, 2022
1 parent 342f662 commit 1b4a010
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/workflows/windows-precompile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
runs-on: windows-latest
env:
MIX_ENV: prod
EVISION_VERSION: "0.1.4"
OPENCV_VER: "4.6.0"
OTP_VERSION: "25.0.4"
ELIXIR_VERSION: "1.14.0"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ In general, you can add `evision` to `deps` with the following settings.
```elixir
def deps do
[
{:evision, "~> 0.1.4", github: "cocoa-xu/evision", tag: "v0.1.4"}
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"}
]
end
```
Expand All @@ -99,9 +99,9 @@ To use precompiled Evision library, the following environment variables should b
# required
# set this to true if prefer to use precompiled library
#
# currently "0.1.1" to "0.1.4" are available
# currently "0.1.1" to "0.1.5" are available
# the version is implied by the tag in deps:
# {:evision, "~> 0.1.4", github: "cocoa-xu/evision", tag: "v0.1.4"}
# {:evision, "~> 0.1.5", github: "cocoa-xu/evision", tag: "v0.1.5"}
# for other available versions, please check the GitHub release page
# https://github.com/cocoa-xu/evision/releases
export EVISION_PREFER_PRECOMPILED=true
Expand Down Expand Up @@ -268,7 +268,7 @@ Then you can add `evision` as dependency in your `mix.exs`. At the moment you wi
```elixir
def deps do
[
{:evision, "~> 0.1.4", github: "cocoa-xu/evision", tag: "v0.1.4"}
{:evision, "~> 0.1.5", github: "cocoa-xu/evision", tag: "v0.1.5"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion examples/cifar10.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:torchx, "~> 0.3"},
{:nx, "~> 0.3", override: true},
{:kino, "~> 0.6"},
Expand Down
2 changes: 1 addition & 1 deletion examples/densenet121_benchmark.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
])
```

Expand Down
2 changes: 1 addition & 1 deletion examples/dnn-detection-model.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])
```
Expand Down
2 changes: 1 addition & 1 deletion examples/dnn-googlenet.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"}
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"}
])
```

Expand Down
2 changes: 1 addition & 1 deletion examples/imread.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])
```
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 @@ -6,7 +6,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:evision_smartcell, "~> 0.1", github: "cocoa-xu/evision_smartcell"},
{:scidata, "~> 0.1"},
{:kino, "~> 0.6"},
Expand Down
2 changes: 1 addition & 1 deletion examples/ml-svm.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])
```
Expand Down
2 changes: 1 addition & 1 deletion examples/pca.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])

Expand Down
2 changes: 1 addition & 1 deletion examples/photo-hdr.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])

Expand Down
2 changes: 1 addition & 1 deletion examples/stitching.livemd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
System.put_env("EVISION_PREFER_PRECOMPILED", "true")

Mix.install([
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.4"},
{:evision, "~> 0.1", github: "cocoa-xu/evision", tag: "v0.1.5"},
{:kino, "~> 0.6"}
])
```
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.4"},
{vsn, "0.1.5"},
{registered, []},
{applications,
[kernel,
Expand Down

0 comments on commit 1b4a010

Please sign in to comment.