Commit c53946e846ea7b39fec519a6d2a9d9c27422f3d8
Version bump to 3.1.3
T.J. Schuck committed on 2/21/2014, 7:18:28 PMParent: d0cdb498d6654417c9c2bb94de852b9a04117bac
Files changed
CHANGELOG | changed |
Gemfile.lock | changed |
README.md | changed |
bcrypt.gemspec | changed |
CHANGELOG | ||
---|---|---|
@@ -56,4 +56,8 @@ | ||
56 | 56 | |
57 | 57 | 3.1.2 Aug 26 2013 |
58 | 58 | - Add support for Ruby 1.8 and 2.0 (in addition to 1.9) in compiled Windows binaries |
59 | 59 | - Add support for 64-bit Windows |
60 | + | |
61 | +3.1.3 Feb 21 2014 | |
62 | + - Add support for Ruby 2.1 in compiled Windows binaries | |
63 | + - Rename gem from "bcrypt-ruby" to just "bcrypt". [GH #86 by @sferik] |
Gemfile.lock | ||
---|---|---|
@@ -1,8 +1,8 @@ | ||
1 | 1 | PATH |
2 | 2 | remote: . |
3 | 3 | specs: |
4 | - bcrypt (3.1.2) | |
4 | + bcrypt (3.1.3) | |
5 | 5 | |
6 | 6 | GEM |
7 | 7 | remote: https://rubygems.org/ |
8 | 8 | specs: |
README.md | ||
---|---|---|
@@ -29,10 +29,10 @@ | ||
29 | 29 | |
30 | 30 | The bcrypt gem is available on the following ruby platforms: |
31 | 31 | |
32 | 32 | * JRuby |
33 | -* RubyInstaller 1.8, 1.9, and 2.0 builds on win32 | |
34 | -* Any 1.8, 1.9, or 2.0 ruby on a BSD/OSX/Linux system with a compiler | |
33 | +* RubyInstaller 1.8, 1.9, 2.0, and 2.1 builds on win32 | |
34 | +* Any 1.8, 1.9, 2.0, or 2.1 ruby on a BSD/OSX/Linux system with a compiler | |
35 | 35 | |
36 | 36 | ## How to use `bcrypt()` in your Rails application |
37 | 37 | |
38 | 38 | *Note*: Rails versions >= 3 ship with `ActiveModel::SecurePassword` which uses bcrypt-ruby. |
bcrypt.gemspec | ||
---|---|---|
@@ -1,7 +1,7 @@ | ||
1 | 1 | Gem::Specification.new do |s| |
2 | 2 | s.name = 'bcrypt' |
3 | - s.version = '3.1.2' | |
3 | + s.version = '3.1.3' | |
4 | 4 | |
5 | 5 | s.summary = "OpenBSD's bcrypt() password hashing algorithm." |
6 | 6 | s.description = <<-EOF |
7 | 7 | bcrypt() is a sophisticated and secure hash algorithm designed by The OpenBSD project |
Built with git-ssb-web