bunny 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0836f4aa9086b7ac58dcfc0f2aa21e65580fca67
4
- data.tar.gz: e15d6b9d8a1cb73e1bf686eb0fd2dd0c59741452
3
+ metadata.gz: 648d68d8fe76b0d47eedae2d12f35554045e9267
4
+ data.tar.gz: 8377574a8a447f7f411092e1c21617b8a5f08566
5
5
  SHA512:
6
- metadata.gz: f63f5f0e9646746806cb21a5a1dc57e11f85bb23f5655937dd30136054996dd518cb91c296262569b6b92be83c5a32b503c6b0ff88f8788a3481d4f1f722891c
7
- data.tar.gz: 41d514a852463368e4c37a63bda65d8d98308d42fa62f4d4eb925e65554d8e552d29aa8e2b4c1d4386127a34c2f512ee9810a99aeea2793188b5189a586e71c4
6
+ metadata.gz: fd69050aaa772370e27cfc8f7beb98003793505312bec0f2b592108f4183f17935fd1f0fd9f21dea9031235c3c5b36deffefdaee72d4d93fd2178512698f3b83
7
+ data.tar.gz: 5e56532c7422b790d4da9e838068bcce9bfdbeacb0691c03a3bf7d1f9a0531ffd72865f5bdfec75c7560de349a8f4bb990a2914ad01af2f28a3ca44eb8e40b95
@@ -1,3 +1,11 @@
1
+ ## Changes between Bunny 1.0.1 and 1.0.2
2
+
3
+ ### Fixes CPU Burn on JRuby
4
+
5
+ A silly mistake in `1.0.1` testing process ended up reverting
6
+ the fix for #165 and #166. This release corrects it.
7
+
8
+
1
9
  ## Changes between Bunny 1.0.0 and 1.0.1
2
10
 
3
11
  ### Default CA's Paths Are Disabled on JRuby
@@ -3,7 +3,7 @@ if defined?(JRUBY_VERSION)
3
3
  require "bunny/jruby/socket"
4
4
 
5
5
  module Bunny
6
- SocketImpl = Socket #JRuby::Socket
6
+ SocketImpl = JRuby::Socket
7
7
  end
8
8
  else
9
9
  require "bunny/cruby/socket"
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "1.0.1"
5
+ VERSION = "1.0.2"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bunny
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Duncan