Commit 38525667ede8e5a0168f7bbd3e2ea477a454abdb
Version bump for win32 gem repackaging
Attempted fix for https://github.com/codahale/bcrypt-ruby/issues/72T.J. Schuck committed on 7/10/2013, 4:54:13 AM
Parent: d03543e1f563bb0f4ee9b8a8d923dbfcf26586b1
Files changed
CHANGELOG | changed |
Gemfile.lock | changed |
bcrypt-ruby.gemspec | changed |
CHANGELOG | ||
---|---|---|
@@ -1,7 +1,7 @@ | ||
1 | 1 | 1.0.0 Feb 27 2007 |
2 | 2 | - Initial release. |
3 | - | |
3 | + | |
4 | 4 | 2.0.0 Mar 07 2007 |
5 | 5 | - Removed BCrypt::Password#exactly_equals -- use BCrypt::Password#eql? instead. |
6 | 6 | - Added BCrypt::Password#is_password?. |
7 | 7 | - Refactored out BCrypt::Internals into more useful BCrypt::Engine. |
@@ -49,4 +49,7 @@ | ||
49 | 49 | 3.1.0 May 07 2013 |
50 | 50 | - Add BCrypt::Password.valid_hash?(str) to check if a string is a valid bcrypt password hash |
51 | 51 | - BCrypt::Password cost should be set to DEFAULT_COST if nil |
52 | 52 | - Add BCrypt::Engine.cost attribute for getting/setting a default cost externally |
53 | + | |
54 | +3.1.1 Jul 10 2013 | |
55 | + - Remove support for Ruby 1.8 in compiled win32 binaries |
Gemfile.lock | ||
---|---|---|
@@ -1,8 +1,8 @@ | ||
1 | 1 | PATH |
2 | 2 | remote: . |
3 | 3 | specs: |
4 | - bcrypt-ruby (3.1.0) | |
4 | + bcrypt-ruby (3.1.1.rc1) | |
5 | 5 | |
6 | 6 | GEM |
7 | 7 | remote: https://rubygems.org/ |
8 | 8 | specs: |
bcrypt-ruby.gemspec | ||
---|---|---|
@@ -1,7 +1,7 @@ | ||
1 | 1 | Gem::Specification.new do |s| |
2 | 2 | s.name = 'bcrypt-ruby' |
3 | - s.version = '3.1.0' | |
3 | + s.version = '3.1.1.rc1' | |
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