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 +4 -4
- data/ChangeLog.md +10 -1
- data/Gemfile +1 -1
- data/bunny.gemspec +1 -1
- data/lib/bunny/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67acdd00ad8e7f36b89bcf6043cca832b5ee9ed8
|
|
4
|
+
data.tar.gz: 3fcc3fedbafc611804bf76f0be43e211f8292f75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f730e0dd7c1777043f3fa31b3316df10bb7d12f880d4d0d48cff481d8ab199f667f5399a4de7a059b61a3ad520739448d12ca7f8eca87b90f6bef897f4ca2add
|
|
7
|
+
data.tar.gz: eeff99bc77bb6b95c0c4f84704c699166fd1ca0c29a21c78dde60ca545042f85cf7f5115c58fbc8575f614063ccccd10239ef9bd42a9bb43343e101470679c8d
|
data/ChangeLog.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
|
-
## Changes between Bunny 2.7.
|
|
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
data/bunny.gemspec
CHANGED
data/lib/bunny/version.rb
CHANGED
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.
|
|
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:
|
|
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
|