From 987974666cc16ce40b973427e0e5e770936b429e Mon Sep 17 00:00:00 2001 From: JohnnyT Date: Sun, 14 Sep 2025 10:15:58 -0600 Subject: [PATCH] Releases v0.3.0 --- README.md | 4 ++-- mix.exs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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