diff --git a/README.md b/README.md index 61f6d7e..64b830c 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This package isĀ [available in Hex](https://hex.pm/packages/msg), and can be ins ```elixir def deps do [ - {:msg, "~> 0.2"} + {:msg, "~> 0.3"} ] end ``` @@ -30,7 +30,7 @@ creds = %{ } client = Msg.Client.new(creds) -{:ok, %{"value" => users}} = Msg.Users.list(client) +{:ok, users} = Msg.Users.list(client) ``` ## Features diff --git a/mix.exs b/mix.exs index 535f67e..c01aa01 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Msg.MixProject do use Mix.Project @app :msg - @version "0.2.1" + @version "0.3.0" @source_url "https://github.com/riddler/msg" @deps [ # Docs - separated out to speed up dev compilcation