Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
karmi committed Oct 23, 2014
1 parent c141027 commit 4a3c5bf
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
## 1.0.6

### Client

* Added Manticore transport for JRuby platforms
* Fixed, that `ServerError` inherits from `Transport::Error`
* Fix problems with gems on JRuby
* Added the `send_get_body_as` setting

## API

* Added the "Verify Snapshot" API
* Added the "Upgrade Index" API
* Added support for the `realtime` parameter to the Term Vectors APIs
* Fixed `delete_by_query` example in documentation
* Added the support for `metric` URL parameter to the "Reroute" API
* Added the "Get Indices Info" API
* Added support for versioning for the "Put Script" and "Delete Script" APIs

### Extensions

* Added, that `wait_for_green` timeout for test cluster is configurable with environment variable

### Various

* Added Ruby 2.0.0 and updated 2.1 build specification in the Travis configuration

## 1.0.5

### Client
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 = "1.0.5"
VERSION = "1.0.6"
end
end
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Elasticsearch
module Transport
VERSION = "1.0.5"
VERSION = "1.0.6"
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = [ "README.md", "LICENSE.txt" ]
s.rdoc_options = [ "--charset=UTF-8" ]

s.add_dependency "elasticsearch-transport", '1.0.5'
s.add_dependency "elasticsearch-api", '1.0.5'
s.add_dependency "elasticsearch-transport", '1.0.6'
s.add_dependency "elasticsearch-api", '1.0.6'

s.add_development_dependency "bundler", "> 1"
s.add_development_dependency "rake"
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 = "1.0.5"
VERSION = "1.0.6"
end

0 comments on commit 4a3c5bf

Please sign in to comment.