Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
3.1.21 Dec 31 2025
- Use constant time comparisons
- Mark as Ractor safe

3.1.20 Nov 17 2023
- Limit packaged files -- decrease gem filesize by ~28% [GH #272 by @pusewicz]

Expand Down
2 changes: 2 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ require 'rake/javaextensiontask'
require 'rake/clean'
require 'rdoc/task'
require 'benchmark'
require "bundler"
Bundler::GemHelper.install_tasks

CLEAN.include(
"tmp",
Expand Down
2 changes: 1 addition & 1 deletion bcrypt.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'bcrypt'
s.version = '3.1.20'
s.version = '3.1.21'

s.summary = "OpenBSD's bcrypt() password hashing algorithm."
s.description = <<-EOF
Expand Down
Loading