From d543b230ae3c4c716988d93e877bd52a08783a7a Mon Sep 17 00:00:00 2001 From: Zen Savona Date: Sat, 22 Apr 2017 11:31:32 +1000 Subject: [PATCH] Bump version and update readme --- README.md | 5 ++++- mix.exs | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 62247d5..54f3f30 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ end ... defp deps do - [{:elixtagram, "~> 0.5.0"}] + [{:elixtagram, "~> 0.5.1"}] ... @@ -165,6 +165,9 @@ It's mostly complete, but these things are missing: ## Changelog +### 0.5.1 +- Merge PR which better handles cases where API request limiting kicks in (PR #18, thanks @mendab1e!) + ### 0.5.0 - Merge PR #16 which implements a paginated version of `Elixtagram.tag_recent_media`: `Elixtagram.tag_recent_media_with_pagination` (thanks @mendab1e!) diff --git a/mix.exs b/mix.exs index 4658339..1421643 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Elixtagram.Mixfile do def project do [ app: :elixtagram, - version: "0.5.0", + version: "0.5.1", elixir: ">= 1.2.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,