diff --git a/README.md b/README.md index ce9187c..538e76e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ The package can be installed by adding `ex_hls` to your list of dependencies in ```elixir def deps do [ - {:ex_hls, "~> 0.1.5"} + {:ex_hls, "~> 0.1.6"} ] end ``` @@ -55,7 +55,7 @@ Now you can get the Elixir stream containing media chunks: ```elixir stream = ExHLS.Client.generate_stream(client) Enum.take(stream, 5) -# Returns: +# Returns: # [ # %ExHLS.Chunk{ # payload: <<220, 0, 76, 97, 118, 99, 54, 49, 46, 51, 46, 49, 48, 48, 0, 66, diff --git a/mix.exs b/mix.exs index ace020b..60afd75 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExHLS.Mixfile do use Mix.Project - @version "0.1.5" + @version "0.1.6" @github_url "https://github.com/membraneframework/ex_hls" def project do