Skip to content

Commit

Permalink
Release 6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
karmiq committed Mar 22, 2018
1 parent cf0ff1f commit 30ad767
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module API
VERSION = "6.0.1"
VERSION = "6.0.2"
end
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module Transport
VERSION = "6.0.1"
VERSION = "6.0.2"
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/lib/elasticsearch/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Elasticsearch
VERSION = "6.0.1"
VERSION = "6.0.2"
end

0 comments on commit 30ad767

Please sign in to comment.