chore: release version v3.6.1

This commit is contained in:
github-actions 2023-01-15 07:34:35 +00:00
parent ec8e1eb979
commit d8bd7030bb
3 changed files with 21 additions and 2 deletions

View file

@ -5,6 +5,25 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v3.6.1](https://github.com/team-alembic/ash_authentication/compare/v3.6.0...v3.6.1) (2023-01-15)
### Bug Fixes:
* don't call `hash_provider.valid?` on `nil` values (#135)
* use configured hashed_password_field
### Improvements:
* set confirmed field to `nil`, for reconfirmation (#136)
* set confirmed field to `nil`, for reconfirmation
* only change `confirmed_at_field` if its not changing, and only on updates
## [v3.6.0](https://github.com/team-alembic/ash_authentication/compare/v3.5.3...v3.6.0) (2023-01-13) ## [v3.6.0](https://github.com/team-alembic/ash_authentication/compare/v3.5.3...v3.6.0) (2023-01-13)
### Breaking Changes: ### Breaking Changes:

View file

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

View file

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