bunny 2.8.0 → 2.8.1

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: 4233cd136f781586c6c21f3e6abae2052a0aefdf
4
- data.tar.gz: 359da718cb420fadb31d4f67f9b23557d1d03ddf
3
+ metadata.gz: 4b498f37cb4c91500ac5b66e0abeb8d650112b2e
4
+ data.tar.gz: 4edc1a872bc9806c64ab1d8307c9730af9edada0
5
5
  SHA512:
6
- metadata.gz: c4c5f6c2ae11023b9fe6a45b66fdb7b97f2aa07b89ba7f39cf6d5a2f2c27c7dce1bdc9e3a303d41c1ef067268247617f9e19618e0ac8b58a846ca1452307c050
7
- data.tar.gz: df6aeb03ba7a97a8b864d471bf76eccdf29415bf11db84e8ec9034636de65377ecb1e7bdc9cb4475ad944164d714586a5cc144ab52d1539e08f8761f152b2fbe
6
+ metadata.gz: 76f472696876ab6912b0244a1c234bea819d1538d6483156eb7ba9f099eac7fcc2437320c1a1e7ccde887ba2a42fd871d5a472d7499b4744d44b9d2449f4fd98
7
+ data.tar.gz: 5f2d9d2743555ac1f147b0887b0e989741bbcc9b559ef5354dc929374bf6e4ab63ee9ef82c3f64a62244b43b23c2c3c209f9b828fff58c45099ef89f68f474a3
data/ChangeLog.md CHANGED
@@ -1,4 +1,19 @@
1
- ## Changes between Bunny 2.7.0 and 2.8.0 (unreleased)
1
+ ## Changes between Bunny 2.8.1 and 2.8.2 (unreleased)
2
+
3
+ No changes yet.
4
+
5
+
6
+
7
+ ## Changes between Bunny 2.8.0 and 2.8.1 (Jan 9th, 2018)
8
+
9
+ ### amq-protocol Dependency
10
+
11
+ This version depends on amq-protocol `2.2.x`.
12
+
13
+ GitHub issue: [#538](https://github.com/ruby-amqp/bunny/issues/538).
14
+
15
+
16
+ ## Changes between Bunny 2.7.0 and 2.8.0 (Dec 18th, 2017)
2
17
 
3
18
  This release has **minor breaking public API changes**.
4
19
 
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.8.0"
5
+ VERSION = "2.8.1"
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.8.0
4
+ version: 2.8.1
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-18 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
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
232
232
  version: '0'
233
233
  requirements: []
234
234
  rubyforge_project:
235
- rubygems_version: 2.6.11
235
+ rubygems_version: 2.6.13
236
236
  signing_key:
237
237
  specification_version: 4
238
238
  summary: Popular easy to use Ruby client for RabbitMQ