redis-time-series 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60ddc8ba631c4016031490a9eb8c3e8659d6b38d3f21e3798a253ec3f63b2815
4
- data.tar.gz: 7993209c75f9f23ed0fae6f918020f2a7a793575e6636e57c1bc225db3f3a63d
3
+ metadata.gz: 32031c61eb040add6088dc94a31be33c08108d9127da7e006bb377a247340d03
4
+ data.tar.gz: 8d2cccb22bd414a9fefbcbcdda8b52cce58d6d55e4c3ae67750e699e8aca8d60
5
5
  SHA512:
6
- metadata.gz: 1bd033ed2dfef155ba923ebee94089e41f507dcb8fcb63711a56585703d1603c32ff86b99067641b8a248587925d2bf489affd79822118e5fb42b05dbcf1c374
7
- data.tar.gz: 553ffbea629efff4b1b436faf7542f35204cd9a0f47c2cf28dcd3ecc0261bd399eb19ac57a56985fc3fbeaef0e4b2e24786483bc385e06928fedcbad4f6709d0
6
+ metadata.gz: f6c008474c8e8d3a297f0a2f7953a784ee5a530423c3f6be6f4d9953277bb182ed1bdafe2edb52964afdfac9c4d2cd66be32a87e1f3ac7290e011a0059b94464
7
+ data.tar.gz: 043e562af28011213dfeb6692e61b803a84dbb87cff0d49fad7f9fc46e2650f19b44f5637efeb5810ecefaff1683ee4f14bd41cc0a88bb90808480f9f7f9a616
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.5.1
6
+ * Update Info struct for RTS 1.4 compatibility (#45)
7
+
5
8
  ## 0.5.0
6
9
  * Fix aggregations for TS.RANGE command (#34)
7
10
  * Extract client handling into Client module (#32)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- redis-time-series (0.5.0)
4
+ redis-time-series (0.5.1)
5
5
  redis (~> 4.0)
6
6
 
7
7
  GEM
@@ -26,7 +26,7 @@ GEM
26
26
  coderay (~> 1.1)
27
27
  method_source (~> 1.0)
28
28
  rake (13.0.1)
29
- redis (4.2.1)
29
+ redis (4.2.2)
30
30
  rspec (3.9.0)
31
31
  rspec-core (~> 3.9.0)
32
32
  rspec-expectations (~> 3.9.0)
@@ -37,6 +37,8 @@ class Redis
37
37
  # @see https://oss.redislabs.com/redistimeseries/commands/#tsinfo
38
38
  Info = Struct.new(
39
39
  :chunk_count,
40
+ :chunk_size,
41
+ :duplicate_policy,
40
42
  :first_timestamp,
41
43
  :labels,
42
44
  :last_timestamp,
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  class Redis
3
3
  class TimeSeries
4
- VERSION = '0.5.0'
4
+ VERSION = '0.5.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis-time-series
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Duszynski
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-07-20 00:00:00.000000000 Z
11
+ date: 2020-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: redis