Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump gem version to 3.1.0 #69

Merged
merged 1 commit into from May 16, 2013
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGELOG
Expand Up @@ -39,9 +39,14 @@
2.1.2 Sep 16 2009
- Fixed support for Solaris, OpenSolaris.

3.0.0 Aug 24, 2011
3.0.0 Aug 24 2011
- Bcrypt C implementation replaced with a public domain implementation.
- License changed to MIT

3.0.1
3.0.1 Sep 12 2011
- create raises an exception if the cost is higher than 31. GH #27

3.1.0 May 07 2013
- Add BCrypt::Password.valid_hash?(str) to check if a string is a valid bcrypt password hash
- BCrypt::Password cost should be set to DEFAULT_COST if nil
- Add BCrypt::Engine.cost attribute for getting/setting a default cost externally
2 changes: 1 addition & 1 deletion bcrypt-ruby.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'bcrypt-ruby'
s.version = '3.0.1'
s.version = '3.1.0'

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