From 95c9c96c56318c6fa7a170903550b76512589af6 Mon Sep 17 00:00:00 2001 From: Niko Strijbol Date: Sun, 3 Jan 2021 21:08:18 +0100 Subject: [PATCH] Update to 2.0.0 --- CHANGELOG.md | 7 +++++++ mix.exs | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b8d3cf..0524a70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## Version 2.1.0 + +- [Feature] Allow configuration of validation path (thanks to [Yann VERY](https://github.com/yannvery)) +- [Feature] Allow dynamic configuration. This allows dynamically injecting CAS strategies, see PR#11. (thanks to [Yann VERY](https://github.com/yannvery)) +- [Fix] Fix when `:sweet_xml` was not in the `applications`. The library now relies on Elixir to automatically populate the `applications`. +- [Other] Test against Elixir 1.11 + ## Version 2.0.1 - [Fix] Propagate network errors to Überauth instead of crashing. diff --git a/mix.exs b/mix.exs index 101bbec..cfa3840 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule UeberauthCAS.Mixfile do use Mix.Project - @version "2.0.1" + @version "2.1.0" @url "https://github.com/marceldegraaf/ueberauth_cas" def project do @@ -42,7 +42,7 @@ defmodule UeberauthCAS.Mixfile do defp package do [ files: ["lib", "mix.exs", "README.md", "LICENSE.md", "CHANGELOG.md"], - maintainers: ["Marcel de Graaf"], + maintainers: ["Marcel de Graaf", "Niko Strijbol"], licenses: ["MIT"], links: %{GitHub: @url} ]