omq-rfc-zstd 0.2.0 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2d6625572903ff642e267adb23e6a654eb791a8badb614dcbdf1fdcd90698d6
4
- data.tar.gz: 5dc1db0f6a9e4622496df5759af9e2d409a0e002f4dd554cb41ed376774370b8
3
+ metadata.gz: 5c727a43b65dc4a6b486df1744130f955b8bfabc3b7ba752939049dce6279288
4
+ data.tar.gz: bdca9baac840fb8dbdb153eb80bcf1fed41b8d95b0202f482c6b156c68e02056
5
5
  SHA512:
6
- metadata.gz: be57dd892580e4173561769f624e3aa21759b8d42309f0aecd0c1a64c0abf5ae725718e66589938549a43c8df7664c4bb0fd4c2c7c7d6a643c4591139eeba0c5
7
- data.tar.gz: 20998b4e1ff50da873096ee0c4c9b95fe5f144b42f01af0bffb40c00034ed2732862885c12837fb9fbf7674de5214db48787c7a75880743ab835adac36581e39
6
+ metadata.gz: 6d4aa25f085d486f015333c7d795e5e7b287fc4e6e7dc945ef48b5f86405acb3268d23c0acda6e05ccece058a95fc0cc254b868daff8d3cdd247664bbfc51ea5
7
+ data.tar.gz: cc5715d5f5c48abe5e62864fc6b547fa94d6ddbca7e1baa5cc0786c2c259ba0579bb35b0166fc5ecbc13635dead35b311cfce0a66543639691aae1d739712952
data/README.md CHANGED
@@ -45,7 +45,7 @@ push.connect("tcp://127.0.0.1:5555")
45
45
  dict = File.binread("schema.dict")
46
46
  push.compression = OMQ::Compression::Zstd.with_dictionary(dict)
47
47
 
48
- # 3. Caller-supplied dictionary, sent over the wire once via DICT command
48
+ # 3. Caller-supplied dictionary, sent over the wire once via ZDICT command
49
49
  push.compression = OMQ::Compression::Zstd.with_dictionary(dict, inline: true)
50
50
 
51
51
  # 4. Auto-trained dictionary — zero config
@@ -64,7 +64,7 @@ the fast strategy; see RFC §3.4).
64
64
  | `OMQ::Options` extension (`compression=`) | Implemented |
65
65
  | Handshake property injection | Implemented |
66
66
  | `Connection#receive_message` / send seam | Implemented |
67
- | `DICT` command frame (`dict:inline`, `dict:auto`) | Implemented |
67
+ | `ZDICT` command frame (`dict:inline`, `dict:auto`) | Implemented |
68
68
  | Integration test (real OMQ socket pair) | Implemented |
69
69
  | omq-cli integration (`-z` / `-Z` / `--compress=LEVEL`) | Implemented |
70
70
 
@@ -3,7 +3,7 @@
3
3
  module OMQ
4
4
  module Compression
5
5
  module Zstd
6
- VERSION = "0.2.0"
6
+ VERSION = "0.3.0"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omq-rfc-zstd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrik Wenger
@@ -13,16 +13,16 @@ dependencies:
13
13
  name: omq
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - ">="
16
+ - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: 0.19.3
18
+ version: '0.21'
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
- - - ">="
23
+ - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: 0.19.3
25
+ version: '0.21'
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: protocol-zmtp
28
28
  requirement: !ruby/object:Gem::Requirement