Skip to content

Commit 192e411

Browse files
committed
Release 7.5.0-pre
1 parent d2a7c6d commit 192e411

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 7.5.0-pre
2+
3+
Pre-release version of 7.5 client.
4+
5+
* Support for Elasticsearch `7.5`.
6+
* Update API spec generator: The code for Elasticsearch OSS and X-Pack APIs is being generated from the [rest api spec](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/api).
7+
* Specs have been updated to address new/deprecated parameters.
8+
* This is a pre-release, full Changelog details will be published with the final release of 7.5.0
9+
10+
111
## 7.4.0
212

313
### Client

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.4.0"
7+
VERSION = "7.5.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.4.0"
7+
VERSION = "7.5.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.4.0"
7+
VERSION = "7.5.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 = '>= 1.9'
2929

30-
s.add_dependency "elasticsearch-transport", '7.4.0'
31-
s.add_dependency "elasticsearch-api", '7.4.0'
30+
s.add_dependency "elasticsearch-transport", '7.5.0-pre'
31+
s.add_dependency "elasticsearch-api", '7.5.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.4.0"
6+
VERSION = "7.5.0-pre"
77
end

0 commit comments

Comments
 (0)