From 816c17750ffe94c394b0933eb80e82f1bb492615 Mon Sep 17 00:00:00 2001 From: Jakub Bednar Date: Fri, 5 Mar 2021 19:38:39 +0100 Subject: [PATCH] fix: avoid uses sources from parent path --- CHANGELOG.md | 5 +++++ apis/LICENSE | 21 +++++++++++++++++++++ apis/influxdb-client-apis.gemspec | 3 +-- lib/influxdb2/client/version.rb | 2 +- 4 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 apis/LICENSE diff --git a/CHANGELOG.md b/CHANGELOG.md index dad62c38..b1e8bb97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## 1.13.0 [unreleased] +## 1.12.1 [2021-03-05] + +### Bug Fixes +1. [#74](https://github.com/influxdata/influxdb-client-ruby/pull/74): Avoid uses sources from parent path + ## 1.12.0 [2021-03-05] ### Features diff --git a/apis/LICENSE b/apis/LICENSE new file mode 100644 index 00000000..ca2029ab --- /dev/null +++ b/apis/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Influxdata, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/apis/influxdb-client-apis.gemspec b/apis/influxdb-client-apis.gemspec index fecfecba..176db82d 100644 --- a/apis/influxdb-client-apis.gemspec +++ b/apis/influxdb-client-apis.gemspec @@ -39,8 +39,7 @@ Gem::Specification.new do |spec| spec.metadata['changelog_uri'] = 'https://raw.githubusercontent.com/influxdata/influxdb-client-ruby/master/CHANGELOG.md' spec.files = Dir.glob('lib/**/*') - # spec.files += %w[influxdb-client-apis.gemspec ../LICENSE ../README.md ../CHANGELOG.md Rakefile] - spec.files += %w[influxdb-client-apis.gemspec Rakefile] + spec.files += %w[influxdb-client-apis.gemspec LICENSE Rakefile] spec.test_files = Dir.glob('test/**/*') spec.require_paths = ['lib'] spec.required_ruby_version = '>= 2.2.0' diff --git a/lib/influxdb2/client/version.rb b/lib/influxdb2/client/version.rb index ec3c14ba..9d73e6f9 100644 --- a/lib/influxdb2/client/version.rb +++ b/lib/influxdb2/client/version.rb @@ -19,5 +19,5 @@ # THE SOFTWARE. module InfluxDB2 - VERSION = '1.13.0'.freeze + VERSION = '1.12.1'.freeze end