Skip to content

Commit

Permalink
Release 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames authored and joshcanhelp committed Apr 28, 2020
1 parent acbf6fb commit bca5dbb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [6.0.1](https://github.com/auth0/laravel-auth0/tree/6.0.1) (2020-04-28)
[Full Changelog](https://github.com/auth0/laravel-auth0/compare/6.0.0...6.0.1)

**Fixed**
- Fix access token decoding and validation [\#183](https://github.com/auth0/laravel-auth0/pull/183) ([jimmyjames](https://github.com/jimmyjames))

## [6.0.0](https://github.com/auth0/laravel-auth0/tree/6.0.0) (2020-04-09)
[Full Changelog](https://github.com/auth0/laravel-auth0/compare/5.4.0...6.0.0)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Route::group(['middleware' => 'auth:auth0'], function () {});
Install this plugin into a new or existing project using [Composer](https://getcomposer.org/doc/00-intro.md):

```bash
$ composer require auth0/login:"~5.0"
$ composer require auth0/login:"~6.0"
```

Additional steps to install can be found in the [quickstart](https://auth0.com/docs/quickstart/webapp/laravel#integrate-auth0-in-your-application).
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"prefer-stable": true,
"require": {
"php": "^7.1",
"auth0/auth0-php": "^7.1",
"auth0/auth0-php": "^7.2.0",
"illuminate/support": "5.* | ^6.0 | ^7.0",
"illuminate/contracts": "5.* | ^6.0 | ^7.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Auth0/Login/LoginServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class LoginServiceProvider extends ServiceProvider
{

const SDK_VERSION = "6.0.0";
const SDK_VERSION = "6.0.1";

/**
* Bootstrap the application events.
Expand Down

0 comments on commit bca5dbb

Please sign in to comment.