Skip to content

Commit 4a3c5bf

Browse files
committed
Release 1.0.6
1 parent c141027 commit 4a3c5bf

File tree

5 files changed

+32
-5
lines changed

5 files changed

+32
-5
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 1.0.6
2+
3+
### Client
4+
5+
* Added Manticore transport for JRuby platforms
6+
* Fixed, that `ServerError` inherits from `Transport::Error`
7+
* Fix problems with gems on JRuby
8+
* Added the `send_get_body_as` setting
9+
10+
## API
11+
12+
* Added the "Verify Snapshot" API
13+
* Added the "Upgrade Index" API
14+
* Added support for the `realtime` parameter to the Term Vectors APIs
15+
* Fixed `delete_by_query` example in documentation
16+
* Added the support for `metric` URL parameter to the "Reroute" API
17+
* Added the "Get Indices Info" API
18+
* Added support for versioning for the "Put Script" and "Delete Script" APIs
19+
20+
### Extensions
21+
22+
* Added, that `wait_for_green` timeout for test cluster is configurable with environment variable
23+
24+
### Various
25+
26+
* Added Ruby 2.0.0 and updated 2.1 build specification in the Travis configuration
27+
128
## 1.0.5
229

330
### Client
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module API
3-
VERSION = "1.0.5"
3+
VERSION = "1.0.6"
44
end
55
end
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Transport
3-
VERSION = "1.0.5"
3+
VERSION = "1.0.6"
44
end
55
end

elasticsearch/elasticsearch.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Gem::Specification.new do |s|
2020
s.extra_rdoc_files = [ "README.md", "LICENSE.txt" ]
2121
s.rdoc_options = [ "--charset=UTF-8" ]
2222

23-
s.add_dependency "elasticsearch-transport", '1.0.5'
24-
s.add_dependency "elasticsearch-api", '1.0.5'
23+
s.add_dependency "elasticsearch-transport", '1.0.6'
24+
s.add_dependency "elasticsearch-api", '1.0.6'
2525

2626
s.add_development_dependency "bundler", "> 1"
2727
s.add_development_dependency "rake"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Elasticsearch
2-
VERSION = "1.0.5"
2+
VERSION = "1.0.6"
33
end

0 commit comments

Comments
 (0)