diff --git a/README.md b/README.md index 8f43570..0002944 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Add mopidy to your list of dependencies in `mix.exs`: ```elixir def deps do - [{:mopidy, "~> 0.1.0"}] + [{:mopidy, "~> 0.2.0"}] end ``` diff --git a/lib/mopidy.ex b/lib/mopidy.ex index 4566fca..2413c5f 100644 --- a/lib/mopidy.ex +++ b/lib/mopidy.ex @@ -126,7 +126,7 @@ defmodule Mopidy do Set our request headers for every request. """ def process_request_headers(headers) do - Dict.put headers, :"User-Agent", "Mopidy/v1 mopidy-elixir/0.0.1" + Dict.put headers, :"User-Agent", "Mopidy/v1 mopidy-elixir/0.2.0" Dict.put headers, :"Content-Type", "application/json" end diff --git a/mix.exs b/mix.exs index dcb9386..33de007 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Mopidy.Mixfile do def project do [ app: :mopidy, - version: "0.1.0", + version: "0.2.0", elixir: ">= 1.3.0-rc.1", deps: deps, description: description,