Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
strzibny committed Nov 21, 2024
1 parent bb8ded3 commit d79fecf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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!

Expand Down
8 changes: 4 additions & 4 deletions devise-otp.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ["[email protected]", "[email protected]"]
gem.description = "Time Based OTP/rfc6238 compatible authentication for Devise"
gem.authors = ["Lele Forzani", "Josef Strzibny", "Laney Stroup"]
gem.email = ["[email protected]", "[email protected]", "[email protected]"]
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"]
Expand Down
2 changes: 1 addition & 1 deletion lib/devise-otp/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Devise
module OTP
VERSION = "0.8.0"
VERSION = "1.0.0"
end
end

0 comments on commit d79fecf

Please sign in to comment.