Skip to content

Commit a7aeeb1

Browse files
committed
Release 7.6.0.pre
1 parent 021d041 commit a7aeeb1

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 7.6.0.pre
2+
3+
Pre-release version of 7.6 client.
4+
5+
* Support for Elasticsearch version `7.6`.
6+
* New features: [API Key Support](https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-transport#authentication), [X-Opaque-Id](https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-transport#identifying-running-tasks-with-x-opaque-id) and [Faraday 1.0](https://github.com/elastic/elasticsearch-ruby/pull/808).
7+
* This is a pre-release, full Changelog details will be published with the final release of 7.6.0
8+
19
## 7.5.0
210

311
- Support for Elasticsearch 7.5.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module API
7-
VERSION = "7.5.0"
7+
VERSION = "7.6.0.pre"
88
end
99
end

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module Transport
7-
VERSION = "7.5.0"
7+
VERSION = "7.6.0.pre"
88
end
99
end

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
module Elasticsearch
66
module XPack
7-
VERSION = "7.5.0"
7+
VERSION = "7.6.0.pre"
88
end
99
end

elasticsearch/elasticsearch.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Gem::Specification.new do |s|
2727

2828
s.required_ruby_version = '>= 2.4'
2929

30-
s.add_dependency 'elasticsearch-transport', '7.5.0'
31-
s.add_dependency 'elasticsearch-api', '7.5.0'
30+
s.add_dependency 'elasticsearch-transport', '7.6.0.pre'
31+
s.add_dependency 'elasticsearch-api', '7.6.0.pre'
3232

3333
s.add_development_dependency 'bundler'
3434

elasticsearch/lib/elasticsearch/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# See the LICENSE file in the project root for more information
44

55
module Elasticsearch
6-
VERSION = "7.5.0"
6+
VERSION = "7.6.0.pre"
77
end

0 commit comments

Comments
 (0)