amq-protocol 2.3.0.rc2 → 2.3.0
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/.travis.yml +3 -5
- data/ChangeLog.md +7 -2
- data/amq-protocol.gemspec +1 -1
- data/lib/amq/protocol/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 641ebcaea4a8fa514736a092bbf6c92571d67916
|
|
4
|
+
data.tar.gz: 6ffdea788022625a573c591d4bce1a3f897b2fb1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2cb162b560643a59a8ab8cd62226bc139f209da8c49e38c97ee5a84c3cf78f487c96c7d627c14437837da2bfc6ad244084e04b644f7b302119b74885186bb8b
|
|
7
|
+
data.tar.gz: ba7f11e4620b95ce50a569ef6221fc1343a5fc807afb4ae3d8a6d94a91b8ed469db82c6161f919185dd3fd38acc978919abcd5e9e5d2f44ebee2697118998e8f
|
data/.travis.yml
CHANGED
|
@@ -3,12 +3,10 @@ bundler_args: --without development
|
|
|
3
3
|
cache: bundler
|
|
4
4
|
script: "bundle exec rspec spec"
|
|
5
5
|
rvm:
|
|
6
|
-
- "2.4.0"
|
|
7
|
-
- "2.3.3"
|
|
8
|
-
- "2.2"
|
|
9
|
-
- "2.1"
|
|
10
|
-
- "2.0"
|
|
11
6
|
- ruby-head
|
|
7
|
+
- "2.4.1"
|
|
8
|
+
- "2.3.4"
|
|
9
|
+
- "2.2.7"
|
|
12
10
|
notifications:
|
|
13
11
|
recipients:
|
|
14
12
|
- michael@rabbitmq.com
|
data/ChangeLog.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
|
-
## Changes between 2.2.0 and 2.3.0 (
|
|
1
|
+
## Changes between 2.2.0 and 2.3.0 (Jan 8th, 2018)
|
|
2
|
+
|
|
3
|
+
### Support for Additional URI Query Parameters
|
|
4
|
+
|
|
5
|
+
GitHub issue: [#67](https://github.com/ruby-amqp/amq-protocol/issues/67), [#68](https://github.com/ruby-amqp/amq-protocol/issues/68), [#69](https://github.com/ruby-amqp/amq-protocol/issues/69).
|
|
6
|
+
|
|
7
|
+
Contributed by Andrew Babichev.
|
|
2
8
|
|
|
3
|
-
No changes yet.
|
|
4
9
|
|
|
5
10
|
|
|
6
11
|
|
data/amq-protocol.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
DESC
|
|
18
18
|
s.email = ["michael.s.klishin@gmail.com"]
|
|
19
19
|
s.licenses = ["MIT"]
|
|
20
|
-
s.required_ruby_version = Gem::Requirement.new(">= 2.
|
|
20
|
+
s.required_ruby_version = Gem::Requirement.new(">= 2.2")
|
|
21
21
|
|
|
22
22
|
# files
|
|
23
23
|
s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// }
|
data/lib/amq/protocol/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amq-protocol
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.0
|
|
4
|
+
version: 2.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jakub Stastny
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date:
|
|
14
|
+
date: 2018-01-08 00:00:00.000000000 Z
|
|
15
15
|
dependencies: []
|
|
16
16
|
description: |2
|
|
17
17
|
amq-protocol is an AMQP 0.9.1 serialization library for Ruby. It is not a
|
|
@@ -94,12 +94,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
94
94
|
requirements:
|
|
95
95
|
- - ">="
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
|
-
version: '2.
|
|
97
|
+
version: '2.2'
|
|
98
98
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
99
99
|
requirements:
|
|
100
|
-
- - "
|
|
100
|
+
- - ">="
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
|
-
version:
|
|
102
|
+
version: '0'
|
|
103
103
|
requirements: []
|
|
104
104
|
rubyforge_project: amq-protocol
|
|
105
105
|
rubygems_version: 2.6.13
|