chore: release version v0.2.0

This commit is contained in:
github-actions 2022-10-24 22:21:49 +00:00
parent a939dde9b9
commit 809a0faa55
3 changed files with 11 additions and 2 deletions

View file

@ -5,6 +5,15 @@ See [Conventional Commits](Https://conventionalcommits.org) for commit guideline
<!-- changelog --> <!-- changelog -->
## [v0.2.0](https://github.com/team-alembic/ash_authentication/compare/v0.1.0...v0.2.0) (2022-10-24)
### Features:
* PasswordAuthentication: Registration and authentication with local credentials (#4)
## [v0.1.0](https://github.com/team-alembic/ash_authentication/compare/v0.1.0...v0.1.0) (2022-09-27) ## [v0.1.0](https://github.com/team-alembic/ash_authentication/compare/v0.1.0...v0.1.0) (2022-09-27)

View file

@ -10,7 +10,7 @@ by adding `ash_authentication` to your list of dependencies in `mix.exs`:
```elixir ```elixir
def deps do def deps do
[ [
{:ash_authentication, "~> 0.1.0"} {:ash_authentication, "~> 0.2.0"}
] ]
end end
``` ```

View file

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