diff --git a/CHANGELOG.md b/CHANGELOG.md index d7492fe..c096b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## Authentication Zero 3.0.0 ## + +* Use the new normalizes API +* Use the new password_challenge API +* Use the new authenticate_by API +* Use the new generates_token_for API + ## Authentication Zero 2.16.35 ## * Adjust relationship so that account has many users diff --git a/Gemfile.lock b/Gemfile.lock index b8fef1f..5a4b0c2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - authentication-zero (2.16.36) + authentication-zero (3.0.0.alpha1) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 556ee8f..9b1205d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The purpose of authentication zero is to generate a pre-built authentication sys ## Installation ``` -$ bundle add authentication-zero +$ bundle add authentication-zero --version=3.0.0.alpha1 ``` ## Usage diff --git a/lib/authentication_zero/version.rb b/lib/authentication_zero/version.rb index ca5b2af..f3f13da 100644 --- a/lib/authentication_zero/version.rb +++ b/lib/authentication_zero/version.rb @@ -1,3 +1,3 @@ module AuthenticationZero - VERSION = "2.16.36" + VERSION = "3.0.0.alpha1" end