Skip to content

Commit

Permalink
Release 7.5.0-pre
Browse files Browse the repository at this point in the history
  • Loading branch information
picandocodigo committed Feb 21, 2020
1 parent d2a7c6d commit 192e411
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 7.5.0-pre

Pre-release version of 7.5 client.

* Support for Elasticsearch `7.5`.
* 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).
* Specs have been updated to address new/deprecated parameters.
* This is a pre-release, full Changelog details will be published with the final release of 7.5.0


## 7.4.0

### Client
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch-api/lib/elasticsearch/api/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module API
VERSION = "7.4.0"
VERSION = "7.5.0-pre"
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module Transport
VERSION = "7.4.0"
VERSION = "7.5.0-pre"
end
end
2 changes: 1 addition & 1 deletion elasticsearch-xpack/lib/elasticsearch/xpack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Elasticsearch
module XPack
VERSION = "7.4.0"
VERSION = "7.5.0-pre"
end
end
4 changes: 2 additions & 2 deletions elasticsearch/elasticsearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 1.9'

s.add_dependency "elasticsearch-transport", '7.4.0'
s.add_dependency "elasticsearch-api", '7.4.0'
s.add_dependency "elasticsearch-transport", '7.5.0-pre'
s.add_dependency "elasticsearch-api", '7.5.0-pre'

s.add_development_dependency "bundler"

Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/lib/elasticsearch/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# See the LICENSE file in the project root for more information

module Elasticsearch
VERSION = "7.4.0"
VERSION = "7.5.0-pre"
end

0 comments on commit 192e411

Please sign in to comment.