Skip to content

Commit 927640d

Browse files
committed
Release 7.1.0
1 parent d0f21cb commit 927640d

File tree

6 files changed

+38
-6
lines changed

6 files changed

+38
-6
lines changed

CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## 7.1.0
2+
3+
### Client
4+
5+
* Update elasticsearch-transport README
6+
* Use default port when host and protocol are specified but no port
7+
* Verify that we have a response object before checking its status
8+
* Make code more succinct for supporting host with path and no port
9+
* Support options specified with String keys
10+
* Update elasticsearch-transport/lib/elasticsearch/transport/client.rb
11+
* Add tests showing IPv6 host specified when creating client
12+
13+
### API
14+
15+
* Update links in elasticsearch-api README
16+
17+
### DSL
18+
19+
* Update links in elasticsearch-dsl README
20+
* Allow Bool query and Bool filter methods to take objects as arguments
21+
* Edit tests on bool query / filter to match context
22+
23+
### EXT:7.1.0
24+
25+
* Update elasticsearch-ext README
26+
27+
### XPACK
28+
29+
* Update elasticsearch-xpack README
30+
* Minor formatting fix
31+
* Remove puts line
32+
133
## 7.0.0.pre
234

335
* Added `elastic_ruby_console` executable

elasticsearch-api/lib/elasticsearch/api/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module API
20-
VERSION = "7.0.0"
20+
VERSION = "7.1.0"
2121
end
2222
end

elasticsearch-transport/lib/elasticsearch/transport/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module Transport
20-
VERSION = "7.0.0"
20+
VERSION = "7.1.0"
2121
end
2222
end

elasticsearch-xpack/lib/elasticsearch/xpack/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

1818
module Elasticsearch
1919
module XPack
20-
VERSION = "7.0.0"
20+
VERSION = "7.1.0"
2121
end
2222
end

elasticsearch/elasticsearch.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Gem::Specification.new do |s|
4040

4141
s.required_ruby_version = '>= 1.9'
4242

43-
s.add_dependency "elasticsearch-transport", '7.0.0'
44-
s.add_dependency "elasticsearch-api", '7.0.0'
43+
s.add_dependency "elasticsearch-transport", '7.1.0'
44+
s.add_dependency "elasticsearch-api", '7.1.0'
4545

4646
s.add_development_dependency "bundler"
4747

elasticsearch/lib/elasticsearch/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
# under the License.
1717

1818
module Elasticsearch
19-
VERSION = "7.0.0"
19+
VERSION = "7.1.0"
2020
end

0 commit comments

Comments
 (0)