README.md in bcrypt4-4.0.2 vs README.md in bcrypt4-4.1.0

- old
+ new

@@ -27,17 +27,18 @@ gem install bcrypt4 The bcrypt gem is available on the following ruby platforms: -* JRuby +* JRuby 1.9.3 or greater ** NOTE: due to the reliance on JBCrypt for this library, there is a known issue with bcrypt '2y' format and this will not interoperate with other implementations for '2y' hashes (pull requests welcome). -* RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32 -* Any 1.8, 1.9, 2.0, 2.1, 2.2, or 2.3 Ruby on a BSD/OS X/Linux system with a compiler +* RubyInstaller 1.9.3, 2.0, 2.1, and 2.2 builds on win32 +* 1.9.3 and greater or any 2.0, 2.1, 2.2, 2.3, or 2.4 Ruby on a BSD/OS X/Linux system with a compiler + ## How to use `bcrypt()` in your Rails application -*Note*: Rails versions >= 3 ship with `ActiveModel::SecurePassword` which uses bcrypt-ruby. +*Note*: Rails versions >= 3 ship with `ActiveModel::SecurePassword` which uses bcrypt-ruby. (not this version) `has_secure_password` [docs](http://api.rubyonrails.org/classes/ActiveModel/SecurePassword/ClassMethods.html#method-i-has_secure_password) implements a similar authentication strategy to the code below. ### The _User_ model