bcrypt 3.1.3 → 3.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG +5 -0
  3. data/Gemfile.lock +1 -1
  4. data/bcrypt.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 241a6b6cc9720a618e1ebdcb28f5bf1662879c4b
4
- data.tar.gz: d490594625ba0385dc305cccdcd98816c7f526c6
5
2
  SHA512:
6
- metadata.gz: c2f7c31105ae836db945dd45da319cf6ad35305759676a81161f32423bbad609769c47d049c551920e57e7fb543ad33ebe36136c325ab97c0094cb4785f0412f
7
- data.tar.gz: c8e40b103f8e6841b9539a77be22436f5c084b1a50590b0eeaf43789a84fa20d80fee0a0df4c4430d366c6399b7ed2cf1bf9bec72f7a069e850c18049110ef61
3
+ metadata.gz: e645f502fd6abd3795296d624da42fcd5135dbf04b4deb5fae05164ee9e58b9f6a8388d338006e6bd866d830cca9827b641a37a8aa693f7abef591616869dc6f
4
+ data.tar.gz: 583f3ca049787420d13f43f830d89b2c7982655e9742ad99ba8a4e6583d43762f58c0441bc3a0494e086ddb3d1fd59fc4f085209df0a247164097e205371be94
5
+ SHA1:
6
+ metadata.gz: ce2035fa4e58727dc4fe9e3671ac97bfc56cbe58
7
+ data.tar.gz: 613354fad88c424d4c97cccc1457f7fee812d672
data/CHANGELOG CHANGED
@@ -61,3 +61,8 @@
61
61
  3.1.3 Feb 21 2014
62
62
  - Add support for Ruby 2.1 in compiled Windows binaries
63
63
  - Rename gem from "bcrypt-ruby" to just "bcrypt". [GH #86 by @sferik]
64
+
65
+ 3.1.6 Feb 21 2014
66
+ - Dummy version of "bcrypt-ruby" needed a couple version bumps to fix some
67
+ bugs. It felt wrong to have that at a higher version than the real gem, so
68
+ the real gem is getting bumped to 3.1.6.
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bcrypt (3.1.3)
4
+ bcrypt (3.1.6)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'bcrypt'
3
- s.version = '3.1.3'
3
+ s.version = '3.1.6'
4
4
 
5
5
  s.summary = "OpenBSD's bcrypt() password hashing algorithm."
6
6
  s.description = <<-EOF
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcrypt
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.3
4
+ version: 3.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Coda Hale