bunny 2.7.3 → 2.7.4

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: 919483301947c21f40cb3c6bdedfcc8808e365ee
4
- data.tar.gz: 2b6c80010c62acd49f88abb90aad2ccd5b5baf01
3
+ metadata.gz: 67acdd00ad8e7f36b89bcf6043cca832b5ee9ed8
4
+ data.tar.gz: 3fcc3fedbafc611804bf76f0be43e211f8292f75
5
5
  SHA512:
6
- metadata.gz: ecc98a8d2591d2093b186508324331337fdb20ac061774983613278174a2c694dbf74aa2788daa7bca5356407b8891494b42523dcb2288e185e4a4465cb83378
7
- data.tar.gz: 40f9b12db88c3b533a207870c2dd72b3a06da36aa71cb92dc26ced282e08df06478f163ccc2e97a6e5322c8a75c19455d286eee3a9285d7f8e4dc53e654834f2
6
+ metadata.gz: f730e0dd7c1777043f3fa31b3316df10bb7d12f880d4d0d48cff481d8ab199f667f5399a4de7a059b61a3ad520739448d12ca7f8eca87b90f6bef897f4ca2add
7
+ data.tar.gz: eeff99bc77bb6b95c0c4f84704c699166fd1ca0c29a21c78dde60ca545042f85cf7f5115c58fbc8575f614063ccccd10239ef9bd42a9bb43343e101470679c8d
data/ChangeLog.md CHANGED
@@ -1,8 +1,17 @@
1
- ## Changes between Bunny 2.7.3 and 2.7.4 (unreleased)
1
+ ## Changes between Bunny 2.7.4 and 2.7.5 (unreleased)
2
2
 
3
3
  No changes yet.
4
4
 
5
5
 
6
+ ## Changes between Bunny 2.7.3 and 2.7.4 (Jan 9th, 2018)
7
+
8
+ ### amq-protocol Dependency
9
+
10
+ This version depends on amq-protocol `2.2.x`.
11
+
12
+ GitHub issue: [#538](https://github.com/ruby-amqp/bunny/issues/538).
13
+
14
+
6
15
  ## Changes between Bunny 2.7.2 and 2.7.3 (Dec 19th, 2017)
7
16
 
8
17
  ### JRuby 9K Compatibility
data/Gemfile CHANGED
@@ -50,4 +50,4 @@ def custom_gem(name, options = Hash.new)
50
50
  end
51
51
  end
52
52
 
53
- custom_gem "amq-protocol", git: "https://github.com/ruby-amqp/amq-protocol", branch: "master"
53
+ custom_gem "amq-protocol", "~> 2.2.0"
data/bunny.gemspec CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  s.email = ["michael.s.klishin@gmail.com"]
25
25
 
26
26
  # Dependencies
27
- s.add_dependency "amq-protocol", ">= 2.2.0"
27
+ s.add_dependency "amq-protocol", "~> 2.2.0"
28
28
 
29
29
  # Files.
30
30
  s.has_rdoc = true
data/lib/bunny/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "2.7.3"
5
+ VERSION = "2.7.4"
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: 2.7.3
4
+ version: 2.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Duncan
@@ -12,20 +12,20 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2017-12-19 00:00:00.000000000 Z
15
+ date: 2018-01-09 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: amq-protocol
19
19
  requirement: !ruby/object:Gem::Requirement
20
20
  requirements:
21
- - - ">="
21
+ - - "~>"
22
22
  - !ruby/object:Gem::Version
23
23
  version: 2.2.0
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
27
27
  requirements:
28
- - - ">="
28
+ - - "~>"
29
29
  - !ruby/object:Gem::Version
30
30
  version: 2.2.0
31
31
  description: Easy to use, feature complete Ruby client for RabbitMQ 3.3 and later