Skip to content

Commit

Permalink
Merge pull request #181 from achedeuzot/prepare-2.0.0-release
Browse files Browse the repository at this point in the history
feat(release): Prepare 2.0.0 release
  • Loading branch information
achedeuzot authored Aug 15, 2021
2 parents 115cfb7 + cdeae4d commit 01f4f20
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## v2.0.0 - 2021-08-14

- BREAKING CHANGE: changed error management on wrong OAuth code.
Instead of raising a `OAuth2.Error`, the `conn.assigns.ueberauth_failure`
is set with the following value:
```elixir
%Ueberauth.Failure.Error{
message: "Invalid authorization code",
message_key: "invalid_grant"
}
```
- Bumped dependencies

## v1.0.0 - 2020-07-10

- BREAKING CHANGE: bump `ueberauth` to `0.7.0` which provides default CSRF protection.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
```elixir
def deps do
[
{:ueberauth_auth0, "~> 1.0"}
{:ueberauth_auth0, "~> 2.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule UeberauthAuth0.Mixfile do
use Mix.Project

@source_url "https://github.com/achedeuzot/ueberauth_auth0"
@version "1.0.0"
@version "2.0.0"

def project do
[
Expand Down

0 comments on commit 01f4f20

Please sign in to comment.