influxdb 0.3.15 → 0.3.16

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
  SHA1:
3
- metadata.gz: 60063db18e559aa688b4c54f7b7b4a9b10112249
4
- data.tar.gz: e2babb896952b556975099b7fc181401687211c9
3
+ metadata.gz: 6220099c5c1aaa4926acf2b73f6344110a026e2e
4
+ data.tar.gz: df99c2b82e703cc60fc8a9b9eb9805344ccf2a9d
5
5
  SHA512:
6
- metadata.gz: 922a93ef68a4b71a1dc33ad5d2b811af017db80b28899f0ac355bafe9551a3ce69d3ff9e064ff949f7a5fe39442d031ad58404ccddfb877318626d5370d2268f
7
- data.tar.gz: add867058a65debfe4a31d0f8f11e2f94c46aa17d16bfa8b20da2d4608ab655ed80712bb1330a2897356d030181a86d7e7eac720d147bc14894182bdaedf39f5
6
+ metadata.gz: 31e1a5b07ae57d4687f08c021ac5919320e54ba3ff3efed9008b906621a3d7fa5ac3a17a3a4d1943707cf426d0e9935b3b47a9395f611d6c0df21658c588470f
7
+ data.tar.gz: 266143d2bd9ce9eabab785209511619b1f92eb26efe7c374cd26ddd71083f349296f8719f354268906329bfca7f60d09e19ce68badf05ef4f0e4f45167e6a6d3
@@ -36,6 +36,8 @@ matrix:
36
36
  env: TEST_TASK=smoke influx_version=1.1.0 pkghash=682904c350ecfc2a60ec9c6c08453ef2
37
37
  - rvm: 2.4.0
38
38
  env: TEST_TASK=smoke influx_version=1.2.4 pkghash=0545d67217393282188e5d5cdedfdc85
39
+ - rvm: 2.4.0
40
+ env: TEST_TASK=smoke influx_version=1.3.2 pkghash=27b200344bed9de9df193b62a59d378f
39
41
  - rvm: 2.4.0
40
42
  env: TEST_TASK=smoke influx_version=nightly channel=nightlies
41
43
  fail_fast: true
@@ -6,6 +6,11 @@ For the full commit log, [see here](https://github.com/influxdata/influxdb-ruby/
6
6
 
7
7
  - nothing yet
8
8
 
9
+ ## v0.3.16, released 2017-08-17
10
+
11
+ - **This is propably the last release in the 0.3.x series**
12
+ - Typo fix in README (#196, @MichaelSp)
13
+
9
14
  ## v0.3.15, released 2017-07-17
10
15
 
11
16
  - Bugfix for `InfluxDB::Client#list_series` when no series available
data/README.md CHANGED
@@ -38,8 +38,10 @@ Maintained by [@toddboom](https://github.com/toddboom) and [@dmke](https://githu
38
38
 
39
39
  ## Ruby support
40
40
 
41
- This gem should work with Ruby 1.9+, but starting with v0.4, we'll likely drop
42
- Ruby 1.9 support.
41
+ Up to and including version 0.3.x, this gem will work with Ruby 1.9+. Starting
42
+ with 0.4.0, only Ruby 2.2+ will be supported.
43
+
44
+ To read the documentation for 0.3.x, see the [stable-03 branch](https://github.com/influxdata/influxdb-ruby/tree/stable-03).
43
45
 
44
46
  Please note that for Ruby 1.9, you'll need to install the JSON gem in version
45
47
  1.8.x yourself, for example by pinning the version in your `Gemfile` (i.e.
@@ -169,7 +171,7 @@ influxdb = InfluxDB::Client.new database,
169
171
 
170
172
  data = {
171
173
  values: { value: 0 },
172
- tags: { foo: 'bar', bar: 'baz' }
174
+ tags: { foo: 'bar', bar: 'baz' },
173
175
  timestamp: Time.now.to_i
174
176
  }
175
177
 
@@ -20,6 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ["lib"]
21
21
 
22
22
  spec.add_runtime_dependency "json"
23
+ spec.post_install_message = "Heads up: version 0.4 will drop support for MRI <= 2.1"
23
24
 
24
25
  spec.add_development_dependency "rake"
25
26
  spec.add_development_dependency "bundler", "~> 1.3"
@@ -1,3 +1,3 @@
1
1
  module InfluxDB # :nodoc:
2
- VERSION = "0.3.15".freeze
2
+ VERSION = "0.3.16".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: influxdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.15
4
+ version: 0.3.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd Persen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-17 00:00:00.000000000 Z
11
+ date: 2017-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -175,7 +175,7 @@ homepage: http://influxdb.org
175
175
  licenses:
176
176
  - MIT
177
177
  metadata: {}
178
- post_install_message:
178
+ post_install_message: 'Heads up: version 0.4 will drop support for MRI <= 2.1'
179
179
  rdoc_options: []
180
180
  require_paths:
181
181
  - lib