From db76ea80939077dec311a02662bc9cd23df3d91b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Kita?= Date: Tue, 5 Dec 2023 13:45:15 +0100 Subject: [PATCH] Fix a bug within bundlex's precompiled dependency configuration for aarch64. Bump to v0.31.3. (#105) * Fix a bug within bundlex's precompiled dependency configuration for aarch64. Bump to v0.31.3. --- README.md | 2 +- bundlex.exs | 3 +-- mix.exs | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 02b1bab..7afc423 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Note: `Membrane.H264.FFmpeg.Parser` has been removed. Now you can use our pure E Add the following line to your `deps` in `mix.exs`. Run `mix deps.get`. ```elixir -{:membrane_h264_ffmpeg_plugin, "~> 0.31.2"} +{:membrane_h264_ffmpeg_plugin, "~> 0.31.3"} ``` This package depends on the [ffmpeg](https://www.ffmpeg.org) libraries. The precompiled builds will be pulled and linked automatically. However, should there be any problems, consider installing it manually. diff --git a/bundlex.exs b/bundlex.exs index 00e6faf..64c1f98 100644 --- a/bundlex.exs +++ b/bundlex.exs @@ -7,8 +7,7 @@ defmodule Membrane.H264.FFmpeg.BundlexProject do case Bundlex.get_target() do %{architecture: "aarch64", os: "linux"} -> - {:precompiled, - "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n6.0-latest-linuxarm64-gpl-shared-6.0.tar.xz"} + "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n6.0-latest-linuxarm64-gpl-shared-6.0.tar.xz" %{os: "linux"} -> "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-n6.0-latest-linux64-gpl-shared-6.0.tar.xz" diff --git a/mix.exs b/mix.exs index acc269c..2d89f73 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Membrane.H264.FFmpeg.Plugin.MixProject do use Mix.Project - @version "0.31.2" + @version "0.31.3" @github_url "https://github.com/membraneframework/membrane_h264_ffmpeg_plugin" def project do