diff --git a/CHANGELOG.md b/CHANGELOG.md index 07f0bfac1..f1b066950 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,13 @@ # Changelog -## 1.0.0 (Unreleased) +## 1.0.0.rc1 - bug (spec) - [#228] token response `expires_in` value is now in seconds, relative to request time - [#296] client is optional for password grant type. - - [#319] when client credentials present on password grant type, they are validated - - [#326] If client credentials for refresh token are included, they are - validated. + - [#319] If client credentials are present on password grant type they are validated + - [#326] If client credentials are present in refresh token they are validated - [#326] If authenticated client does not match original client that obtained a refresh token it responds `invalid_grant` instead of `invalid_client`. Previous usage was invalid according to Section 5.2 of diff --git a/lib/doorkeeper/version.rb b/lib/doorkeeper/version.rb index 875d1e094..03cd246c3 100644 --- a/lib/doorkeeper/version.rb +++ b/lib/doorkeeper/version.rb @@ -1,3 +1,3 @@ module Doorkeeper - VERSION = '1.0.0' + VERSION = '1.0.0.rc1' end