diff --git a/README.md b/README.md index af9fe4b..8416dc3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ In most cases you can skip this step as `Phoenix` comes with `LiveDashboard` ena ```elixir def deps do [ - {:ex_webrtc_dashboard, "~> 0.1.0"} + {:ex_webrtc_dashboard, "~> 0.1.1"} ] end ``` diff --git a/mix.exs b/mix.exs index 53be1b7..a4f7b6b 100644 --- a/mix.exs +++ b/mix.exs @@ -1,13 +1,13 @@ -defmodule ExWebrtcDashboard.MixProject do +defmodule ExWebRTCDashboard.MixProject do use Mix.Project - @version "0.1.0" + @version "0.1.1" @source_url "https://github.com/elixir-webrtc/ex_webrtc_dashboard" def project do [ app: :ex_webrtc_dashboard, - version: "0.1.0", + version: @version, elixir: "~> 1.15", start_permanent: Mix.env() == :prod, description: "ExWebRTC statistics visualization for the Phoenix LiveDashboard", diff --git a/test/ex_webrtc_dashboard_test.exs b/test/ex_webrtc_dashboard_test.exs deleted file mode 100644 index 3de6e20..0000000 --- a/test/ex_webrtc_dashboard_test.exs +++ /dev/null @@ -1,8 +0,0 @@ -defmodule ExWebrtcDashboardTest do - use ExUnit.Case - doctest ExWebrtcDashboard - - test "greets the world" do - assert ExWebrtcDashboard.hello() == :world - end -end