From d79fecf9dd58acef47bc0140d5d0933c155581d2 Mon Sep 17 00:00:00 2001 From: Josef Strzibny Date: Thu, 21 Nov 2024 11:57:33 +0100 Subject: [PATCH] Bump version to 1.0.0 --- README.md | 6 ++++-- devise-otp.gemspec | 8 ++++---- lib/devise-otp/version.rb | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 102e6f9..6e5d1fa 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Some of the compatible token devices are: * [Google Authenticator](https://code.google.com/p/google-authenticator/) * [FreeOTP](https://fedorahosted.org/freeotp/) -Device OTP was recently updated to work with Rails 7 and Turbo. +Device OTP was recently updated to work with Rails 7+ and Turbo. ## Sponsor @@ -64,6 +64,8 @@ To use the default CSS for devise-otp, just require the devise-otp.css file as u *= require devise-otp +It might be even easier to just copy the styles to your project. + ### Custom views If you want to customise your views, you can use the following generator to eject the default view files: @@ -101,7 +103,7 @@ Enforcing mandatory OTP requires adding the ensure\_mandatory\_{scope}\_otp! met ## Authors -The project was originally started by Lele Forzani by forking [devise_google_authenticator](https://github.com/AsteriskLabs/devise_google_authenticator) and still contains some devise_google_authenticator code. It's now maintained by [Josef Strzibny](https://github.com/strzibny/). +The project was originally started by Lele Forzani by forking [devise_google_authenticator](https://github.com/AsteriskLabs/devise_google_authenticator) and still contains some devise_google_authenticator code. It's now maintained by [Josef Strzibny](https://github.com/strzibny/) and [Laney Stroup](https://github.com/strouptl). Contributions are welcome! diff --git a/devise-otp.gemspec b/devise-otp.gemspec index 692b9ed..50bad8a 100644 --- a/devise-otp.gemspec +++ b/devise-otp.gemspec @@ -5,11 +5,11 @@ require_relative "lib/devise-otp/version" Gem::Specification.new do |gem| gem.name = "devise-otp" gem.version = Devise::OTP::VERSION - gem.authors = ["Lele Forzani", "Josef Strzibny"] - gem.email = ["lele@windmill.it", "strzibny@strzibny.name"] - gem.description = "Time Based OTP/rfc6238 compatible authentication for Devise" + gem.authors = ["Lele Forzani", "Josef Strzibny", "Laney Stroup"] + gem.email = ["lele@windmill.it", "strzibny@strzibny.name", "laney@stroupsolutions.com"] + gem.description = "OTP authentication for Devise" gem.summary = "Time Based OTP/rfc6238 compatible authentication for Devise" - gem.homepage = "http://git.windmill.it/wm/devise-otp" + gem.homepage = "https://github.com/wmlele/devise-otp" gem.files = `git ls-files`.split($/) gem.require_paths = ["lib"] diff --git a/lib/devise-otp/version.rb b/lib/devise-otp/version.rb index 4aa88a9..25787eb 100644 --- a/lib/devise-otp/version.rb +++ b/lib/devise-otp/version.rb @@ -1,5 +1,5 @@ module Devise module OTP - VERSION = "0.8.0" + VERSION = "1.0.0" end end