Skip to content

Commit 12a50f4

Browse files
authored
Merge pull request #172 from codahale/gem_3-1-12-rc
RC for 3.1.12 release
2 parents 5c2d2d3 + e8b906a commit 12a50f4

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,7 @@
8282

8383
3.1.11 Mar 06 2016
8484
- Add support for Ruby 2.2 in compiled Windows binaries
85+
86+
3.1.12 May 16 2018
87+
- Add support for Ruby 2.3, 2.4, and 2.5 in compiled Windows binaries
88+
- Fix compatibility with libxcrypt [GH #164 by @besser82]

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
bcrypt (3.1.11)
4+
bcrypt (3.1.12)
55

66
GEM
77
remote: https://rubygems.org/
@@ -41,4 +41,4 @@ DEPENDENCIES
4141
rspec (>= 3)
4242

4343
BUNDLED WITH
44-
1.11.2
44+
1.16.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ re-hash those passwords. This vulnerability only affected the JRuby gem.
3030
The bcrypt gem is available on the following ruby platforms:
3131

3232
* JRuby
33-
* RubyInstaller 1.8, 1.9, 2.0, 2.1, and 2.2 builds on win32
34-
* 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
33+
* RubyInstaller 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, and 2.5 builds on Windows
34+
* Any 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, or 2.5 Ruby on a BSD/OS X/Linux system with a compiler
3535

3636
## How to use `bcrypt()` in your Rails application
3737

Rakefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ CLEAN.include(
1212
"lib/1.9",
1313
"lib/2.0",
1414
"lib/2.1",
15+
"lib/2.2",
16+
"lib/2.3",
17+
"lib/2.4",
18+
"lib/2.5",
1519
"lib/bcrypt_ext.jar",
1620
"lib/bcrypt_ext.so"
1721
)

bcrypt.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = 'bcrypt'
3-
s.version = '3.1.11'
3+
s.version = '3.1.12'
44

55
s.summary = "OpenBSD's bcrypt() password hashing algorithm."
66
s.description = <<-EOF

0 commit comments

Comments
 (0)