diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bf0c46..a1f7f0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v3.10.2](https://github.com/team-alembic/ash_authentication/compare/v3.10.1...v3.10.2) (2023-03-06) + + + + +### Bug Fixes: + +* respect `identity_relationship_user_id_attribute` on `Strategy.OAuth2.IdentityChange` (#213) + ## [v3.10.1](https://github.com/team-alembic/ash_authentication/compare/v3.10.0...v3.10.1) (2023-03-06) diff --git a/README.md b/README.md index 701d970..250b095 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_authentication, "~> 3.10.1"} + {:ash_authentication, "~> 3.10.2"} ] end ``` diff --git a/documentation/tutorials/getting-started-with-authentication.md b/documentation/tutorials/getting-started-with-authentication.md index b434a54..d4a043a 100644 --- a/documentation/tutorials/getting-started-with-authentication.md +++ b/documentation/tutorials/getting-started-with-authentication.md @@ -15,7 +15,7 @@ Bring in the `ash_authentication` dependency: defp deps() [ # ... - {:ash_authentication, "~> 3.10.1"} + {:ash_authentication, "~> 3.10.2"} ] end ``` diff --git a/mix.exs b/mix.exs index 3c4bc54..7b0e5f1 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule AshAuthentication.MixProject do @moduledoc false use Mix.Project - @version "3.10.1" + @version "3.10.2" def project do [