diff --git a/CHANGELOG.md b/CHANGELOG.md index 8132452..d6fdf6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.4.2 + +- OTP 24 support + ## 0.4.1 - Add config value to prevent KeyStore from crashing (@lucasavila00 #19) diff --git a/README.md b/README.md index 800387c..765235e 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ by adding `ex_firebase_auth` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:ex_firebase_auth, "~> 0.4.1"} + {:ex_firebase_auth, "~> 0.4.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 78edc86..dca77a7 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule ExFirebaseAuth.MixProject do def project do [ app: :ex_firebase_auth, - version: "0.4.1", + version: "0.4.2", elixir: "~> 1.10", start_permanent: Mix.env() == :prod, deps: deps(),