From 219c01700b4af90cffe3008d64a1054eb5425359 Mon Sep 17 00:00:00 2001 From: "feliks.pobiedzinski@swmansion.com" Date: Fri, 21 Jun 2024 19:27:48 +0200 Subject: [PATCH] Bump version --- README.md | 2 +- lib/membrane_mp4/demuxer/isom.ex | 2 ++ mix.exs | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e1376b..948035a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The package can be installed by adding `membrane_mp4_plugin` to your list of dep ```elixir defp deps do [ - {:membrane_mp4_plugin, "~> 0.35.0"} + {:membrane_mp4_plugin, "~> 0.35.1"} ] end ``` diff --git a/lib/membrane_mp4/demuxer/isom.ex b/lib/membrane_mp4/demuxer/isom.ex index a0f2c7e..f19512a 100644 --- a/lib/membrane_mp4/demuxer/isom.ex +++ b/lib/membrane_mp4/demuxer/isom.ex @@ -470,6 +470,8 @@ defmodule Membrane.MP4.Demuxer.ISOM do %{state | track_to_pad_id: matching_track_to_pad_id} end + # zips two enumerables + # if one is longer than the another, fills the missing places with `nil` defp zip_all(enum1, enum2) do len1 = length(enum1) len2 = length(enum2) diff --git a/mix.exs b/mix.exs index 2655188..2c9e42a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Membrane.MP4.Plugin.MixProject do use Mix.Project - @version "0.35.0" + @version "0.35.1" @github_url "https://github.com/membraneframework/membrane_mp4_plugin" def project do