From 803c9df48aec420f2555ef597d3a08832cc4f7f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=9Aled=C5=BA?= Date: Mon, 12 Aug 2024 17:18:06 +0200 Subject: [PATCH] Release 0.5.0 --- README.md | 2 +- mix.exs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 56853e2..dc21742 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Make sure you have installed FFMpeg (ver. 4.x - 7.x) development packages on you ```elixir def deps do [ - {:xav, "~> 0.4.0"} + {:xav, "~> 0.5.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 7323b12..fe07859 100644 --- a/mix.exs +++ b/mix.exs @@ -1,13 +1,13 @@ defmodule Xav.MixProject do use Mix.Project - @version "0.4.0" + @version "0.5.0" @source_url "https://github.com/elixir-webrtc/xav" def project do [ app: :xav, - version: "0.4.0", + version: @version, elixir: "~> 1.14", start_permanent: Mix.env() == :prod, description: "Elixir audio/video library built on top of FFmpeg",