From 2e9ea281ac0a408ed940465a38c59467b9b98e91 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 6 Apr 2023 03:07:37 +0000 Subject: [PATCH] chore: release version v3.10.5 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- .../getting-started-with-authentication.md | 2 +- mix.exs | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09c7860e..6349eff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline +## [v3.10.5](https://github.com/team-alembic/ash_authentication/compare/v3.10.4...v3.10.5) (2023-04-06) + + + + +### Improvements: + +* add sign in tokens to password strategy (#252) + +* add sign in tokens to password strategy + +* convert `sign_in_with_token` into an action. + ## [v3.10.4](https://github.com/team-alembic/ash_authentication/compare/v3.10.3...v3.10.4) (2023-04-03) diff --git a/README.md b/README.md index 62e671aa..80686d22 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ dependencies in `mix.exs`: ```elixir def deps do [ - {:ash_authentication, "~> 3.10.4"} + {:ash_authentication, "~> 3.10.5"} ] end ``` diff --git a/documentation/tutorials/getting-started-with-authentication.md b/documentation/tutorials/getting-started-with-authentication.md index 0ea5d992..07088d45 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.4"} + {:ash_authentication, "~> 3.10.5"} ] end ``` diff --git a/mix.exs b/mix.exs index e7be1004..e941fa2e 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule AshAuthentication.MixProject do @moduledoc false use Mix.Project - @version "3.10.4" + @version "3.10.5" def project do [