Skip to content

Commit 2b9006d

Browse files
authored
Update dependency provider (#67)
* Update dependency provider * Update encoder output reference * Revert the output reference * Use another reference * Update dependency provider
1 parent 76a466e commit 2b9006d

6 files changed

Lines changed: 29 additions & 30 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The package can be installed by adding `membrane_opus_plugin` to your list of de
1515
```elixir
1616
def deps do
1717
[
18-
{:membrane_opus_plugin, "~> 0.20.5"}
18+
{:membrane_opus_plugin, "~> 0.20.6"}
1919
]
2020
end
2121
```
@@ -64,7 +64,7 @@ defmodule Membrane.ReleaseTest.Pipeline do
6464

6565
@impl true
6666
def handle_init(_ctx, _options) do
67-
structure =
67+
structure =
6868
child(:source, %Membrane.File.Source{
6969
location: @input_filename
7070
})
@@ -103,7 +103,7 @@ defmodule Membrane.ReleaseTest.Pipeline2 do
103103

104104
@impl true
105105
def handle_init(_ctx, _options) do
106-
structure =
106+
structure =
107107
child(:source, %Membrane.File.Source{
108108
location: @input_filename
109109
})

bundlex.exs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ defmodule Membrane.Opus.BundlexProject do
1313
sources: ["decoder.c"],
1414
os_deps: [
1515
opus: [
16-
{:precompiled, Membrane.PrecompiledDependencyProvider.get_dependency_url(:opus)},
16+
{:precompiled,
17+
Membrane.PrecompiledDependencyProvider.get_dependency_url(:opus, version: "1.5.2")},
1718
:pkg_config
1819
]
1920
],
@@ -25,7 +26,8 @@ defmodule Membrane.Opus.BundlexProject do
2526
sources: ["encoder.c"],
2627
os_deps: [
2728
opus: [
28-
{:precompiled, Membrane.PrecompiledDependencyProvider.get_dependency_url(:opus)},
29+
{:precompiled,
30+
Membrane.PrecompiledDependencyProvider.get_dependency_url(:opus, version: "1.5.2")},
2931
:pkg_config
3032
]
3133
],

mix.exs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Membrane.Opus.Plugin.Mixfile do
22
use Mix.Project
33

4-
@version "0.20.5"
4+
@version "0.20.6"
55
@github_url "https://github.com/membraneframework/membrane_opus_plugin"
66

77
def project do
@@ -43,7 +43,7 @@ defmodule Membrane.Opus.Plugin.Mixfile do
4343
{:unifex, "~> 1.0"},
4444
{:membrane_common_c, "~> 0.16.0"},
4545
{:bundlex, "~> 1.2"},
46-
{:membrane_precompiled_dependency_provider, "~> 0.1.0"},
46+
{:membrane_precompiled_dependency_provider, "~> 0.2.0"},
4747
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
4848
{:ex_doc, "~> 0.28", only: :dev, runtime: false},
4949
{:credo, ">= 0.0.0", only: :dev, runtime: false},

0 commit comments

Comments
 (0)