diff --git a/CHANGELOG.md b/CHANGELOG.md index a135e19..5e97e7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## New version + ## Authentication Zero 4.0.0 ## * Remove system tests diff --git a/Gemfile.lock b/Gemfile.lock index ae24507..5fc4a7e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - authentication-zero (4.0.0) + authentication-zero (4.0.1) GEM remote: https://rubygems.org/ diff --git a/lib/authentication_zero/version.rb b/lib/authentication_zero/version.rb index 1246d68..499273c 100644 --- a/lib/authentication_zero/version.rb +++ b/lib/authentication_zero/version.rb @@ -1,3 +1,3 @@ module AuthenticationZero - VERSION = "4.0.0" + VERSION = "4.0.1" end diff --git a/lib/generators/authentication/authentication_generator.rb b/lib/generators/authentication/authentication_generator.rb index 264e21d..94af25d 100644 --- a/lib/generators/authentication/authentication_generator.rb +++ b/lib/generators/authentication/authentication_generator.rb @@ -8,7 +8,7 @@ class AuthenticationGenerator < Rails::Generators::Base class_option :sudoable, type: :boolean, desc: "Add password request before sensitive data changes" class_option :lockable, type: :boolean, desc: "Add password reset locking" class_option :ratelimit, type: :boolean, desc: "Add request rate limiting" - class_option :passwordless, type: :boolean, desc: "Add passwordless sign" + class_option :passwordless, type: :boolean, desc: "Add passwordless sign in" class_option :omniauthable, type: :boolean, desc: "Add social login support" class_option :trackable, type: :boolean, desc: "Add activity log support" class_option :two_factor, type: :boolean, desc: "Add two factor authentication"