Skip to content

Commit 4528026

Browse files
committed
Bumps version to 9.0.2 and updates CHANGELOG
1 parent 661bbf9 commit 4528026

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
**See the full release notes on the official documentation website: https://www.elastic.co/docs/release-notes/elasticsearch/clients/ruby**
22

3+
# 9.0.2
4+
5+
- Udpates setting 'Accept' and 'Content-Type' headers as to not duplicate or overwrite set headers [#2666](https://github.com/elastic/elasticsearch-ruby/pull/2666).
6+
37
# 9.0.1
48

59
- The request headers were updated for Elasticsearch v9: `compatible-with=9` [#2660](https://github.com/elastic/elasticsearch-ruby/pull/2660).

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

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

1818
module Elasticsearch
1919
module API
20-
VERSION = '9.0.1'.freeze
20+
VERSION = '9.0.2'.freeze
2121
ES_SPECIFICATION_COMMIT = '52c473efb1fb5320a5bac12572d0b285882862fb'.freeze
2222
end
2323
end

elasticsearch/elasticsearch.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
4646
s.rdoc_options = ['--charset=UTF-8']
4747

4848
s.required_ruby_version = '>= 2.6' # For compatibility with JRuby 9.3
49-
s.add_dependency 'elasticsearch-api', '9.0.1'
49+
s.add_dependency 'elasticsearch-api', '9.0.2'
5050
s.add_dependency 'elastic-transport', '~> 8.3'
5151

5252
s.add_development_dependency 'base64'

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 = '9.0.1'.freeze
19+
VERSION = '9.0.2'.freeze
2020
end

0 commit comments

Comments
 (0)