From 977b4947ff4a0f3b6814a298ea5dbf25c8942f76 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Wed, 13 May 2020 16:44:55 +0100 Subject: [PATCH] Release 7.7.0 --- elasticsearch-api/lib/elasticsearch/api/version.rb | 2 +- .../lib/elasticsearch/transport/version.rb | 2 +- elasticsearch-xpack/lib/elasticsearch/xpack/version.rb | 2 +- elasticsearch/elasticsearch.gemspec | 4 ++-- elasticsearch/lib/elasticsearch/version.rb | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index 767a3ebeac..ac5049089a 100644 --- a/elasticsearch-api/lib/elasticsearch/api/version.rb +++ b/elasticsearch-api/lib/elasticsearch/api/version.rb @@ -4,6 +4,6 @@ module Elasticsearch module API - VERSION = "7.7.0.pre" + VERSION = "7.7.0" end end diff --git a/elasticsearch-transport/lib/elasticsearch/transport/version.rb b/elasticsearch-transport/lib/elasticsearch/transport/version.rb index 0e16b116e7..653965dadf 100644 --- a/elasticsearch-transport/lib/elasticsearch/transport/version.rb +++ b/elasticsearch-transport/lib/elasticsearch/transport/version.rb @@ -4,6 +4,6 @@ module Elasticsearch module Transport - VERSION = "7.7.0.pre" + VERSION = "7.7.0" end end diff --git a/elasticsearch-xpack/lib/elasticsearch/xpack/version.rb b/elasticsearch-xpack/lib/elasticsearch/xpack/version.rb index 353d4b47ac..c8305f4a43 100644 --- a/elasticsearch-xpack/lib/elasticsearch/xpack/version.rb +++ b/elasticsearch-xpack/lib/elasticsearch/xpack/version.rb @@ -4,6 +4,6 @@ module Elasticsearch module XPack - VERSION = "7.7.0.pre" + VERSION = "7.7.0" end end diff --git a/elasticsearch/elasticsearch.gemspec b/elasticsearch/elasticsearch.gemspec index 44815df9c1..6c3e0743fe 100644 --- a/elasticsearch/elasticsearch.gemspec +++ b/elasticsearch/elasticsearch.gemspec @@ -32,8 +32,8 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 2.4' - s.add_dependency 'elasticsearch-transport', '7.7.0.pre' - s.add_dependency 'elasticsearch-api', '7.7.0.pre' + s.add_dependency 'elasticsearch-transport', '7.7.0' + s.add_dependency 'elasticsearch-api', '7.7.0' s.add_development_dependency 'bundler' diff --git a/elasticsearch/lib/elasticsearch/version.rb b/elasticsearch/lib/elasticsearch/version.rb index b013999174..c2fb7205d7 100644 --- a/elasticsearch/lib/elasticsearch/version.rb +++ b/elasticsearch/lib/elasticsearch/version.rb @@ -3,5 +3,5 @@ # See the LICENSE file in the project root for more information module Elasticsearch - VERSION = "7.7.0.pre" + VERSION = "7.7.0" end