Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
FelonEkonom committed Jun 21, 2024
1 parent f5ca181 commit 219c017
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 2 additions & 0 deletions lib/membrane_mp4/demuxer/isom.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 219c017

Please sign in to comment.