From 30ad767114eccdfc2d64e65e1358ce41d2d17337 Mon Sep 17 00:00:00 2001 From: Karel Minarik Date: Thu, 22 Mar 2018 17:52:27 +0100 Subject: [PATCH] Release 6.0.2 --- CHANGELOG.md | 11 +++++++++++ elasticsearch-api/lib/elasticsearch/api/version.rb | 2 +- .../lib/elasticsearch/transport/version.rb | 2 +- elasticsearch/elasticsearch.gemspec | 4 ++-- elasticsearch/lib/elasticsearch/version.rb | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c503ee22a6..95622ed3cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 6.0.2 + +### Client + +* Allow passing request headers in `perform_request` + +### API + +* Allow passing headers in `perform_request` +* Set application/x-ndjson content type on Bulk and Msearch requests + ## 6.0.1 * Updated the compatibility table for 6.x diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index 370dd69ee2..c9d287252f 100644 --- a/elasticsearch-api/lib/elasticsearch/api/version.rb +++ b/elasticsearch-api/lib/elasticsearch/api/version.rb @@ -1,5 +1,5 @@ module Elasticsearch module API - VERSION = "6.0.1" + VERSION = "6.0.2" end end diff --git a/elasticsearch-transport/lib/elasticsearch/transport/version.rb b/elasticsearch-transport/lib/elasticsearch/transport/version.rb index 4cf8cfdfb2..d62c871d14 100644 --- a/elasticsearch-transport/lib/elasticsearch/transport/version.rb +++ b/elasticsearch-transport/lib/elasticsearch/transport/version.rb @@ -1,5 +1,5 @@ module Elasticsearch module Transport - VERSION = "6.0.1" + VERSION = "6.0.2" end end diff --git a/elasticsearch/elasticsearch.gemspec b/elasticsearch/elasticsearch.gemspec index 26dd0e7c2d..b696829390 100644 --- a/elasticsearch/elasticsearch.gemspec +++ b/elasticsearch/elasticsearch.gemspec @@ -22,8 +22,8 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 1.9' - s.add_dependency "elasticsearch-transport", '6.0.1' - s.add_dependency "elasticsearch-api", '6.0.1' + s.add_dependency "elasticsearch-transport", '6.0.2' + s.add_dependency "elasticsearch-api", '6.0.2' s.add_development_dependency "bundler", "> 1" diff --git a/elasticsearch/lib/elasticsearch/version.rb b/elasticsearch/lib/elasticsearch/version.rb index 09a437e755..35cbdc149e 100644 --- a/elasticsearch/lib/elasticsearch/version.rb +++ b/elasticsearch/lib/elasticsearch/version.rb @@ -1,3 +1,3 @@ module Elasticsearch - VERSION = "6.0.1" + VERSION = "6.0.2" end