chore: release version v3.11.10

This commit is contained in:
github-actions 2023-09-18 22:22:14 +00:00
parent 62d458f629
commit 8558d8b8f6
4 changed files with 12 additions and 3 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v3.11.10](https://github.com/team-alembic/ash_authentication/compare/v3.11.9...v3.11.10) (2023-09-18)
### Bug Fixes:
* only use sign in token expiration for sign in tokens (#424)
## [v3.11.9](https://github.com/team-alembic/ash_authentication/compare/v3.11.8...v3.11.9) (2023-09-17) ## [v3.11.9](https://github.com/team-alembic/ash_authentication/compare/v3.11.8...v3.11.9) (2023-09-17)

View file

@ -22,7 +22,7 @@ dependencies in `mix.exs`:
```elixir ```elixir
def deps do def deps do
[ [
{:ash_authentication, "~> 3.11.9"} {:ash_authentication, "~> 3.11.10"}
] ]
end end
``` ```

View file

@ -15,7 +15,7 @@ Bring in the `ash_authentication` dependency:
defp deps() defp deps()
[ [
# ... # ...
{:ash_authentication, "~> 3.11.9"} {:ash_authentication, "~> 3.11.10"}
] ]
end end
``` ```

View file

@ -2,7 +2,7 @@ defmodule AshAuthentication.MixProject do
@moduledoc false @moduledoc false
use Mix.Project use Mix.Project
@version "3.11.9" @version "3.11.10"
def project do def project do
[ [