diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3e29b..d7d7c1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## [Unreleased] +## [2.4.1] - 2021-10-26 + +### Changed + +- fix: readme refs (thanks to @danferreira) +- Fix generate_and_sign examples in guides' documentation (thanks to @f-francine) +- Remove no_return from methods that can return (thanks to @jsmestad) +- Fix typos (thanks to @kianmeng) + ## [2.4.0] - 2021-08-15 ### Changed diff --git a/README.md b/README.md index 980d0e6..39a640a 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ Add `:joken` to your list of dependencies in `mix.exs`: ``` elixir def deps do # .. other deps - {:joken, "~> 2.0"}, + {:joken, "~> 2.4"}, # Recommended JSON library - {:jason, "~> 1.1"} + {:jason, "~> 1.2"} end ``` diff --git a/mix.exs b/mix.exs index cb751c7..fc39964 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Joken.Mixfile do use Mix.Project @source_url "https://github.com/joken-elixir/joken" - @version "2.4.0" + @version "2.4.1" def project do [