Skip to content

Commit 02f4d33

Browse files
committed
Update version: master should be 8.0.0
1 parent f9e5692 commit 02f4d33

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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

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

1818
module Elasticsearch
1919
module API
20-
VERSION = "8.0.0-SNAPSHOT"
20+
VERSION = '8.0.0'.freeze
2121
end
2222
end

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

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

1818
module Elasticsearch
1919
module Transport
20-
VERSION = "8.0.0-SNAPSHOT"
20+
VERSION = '8.0.0'.freeze
2121
end
2222
end

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

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

1818
module Elasticsearch
1919
module XPack
20-
VERSION = "8.0.0-SNAPSHOT"
20+
VERSION = '8.0.0'.freeze
2121
end
2222
end

elasticsearch/elasticsearch.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Gem::Specification.new do |s|
3232

3333
s.required_ruby_version = '>= 2.5'
3434

35-
s.add_dependency 'elasticsearch-transport', '8.0.0-SNAPSHOT'
36-
s.add_dependency 'elasticsearch-api', '8.0.0-SNAPSHOT'
35+
s.add_dependency 'elasticsearch-transport', '8.0.0'
36+
s.add_dependency 'elasticsearch-api', '8.0.0'
3737
s.add_development_dependency 'elasticsearch-extensions'
3838

3939
s.add_development_dependency 'ansi'

elasticsearch/lib/elasticsearch/version.rb

+1-1
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 = "8.0.0-SNAPSHOT"
6+
VERSION = '8.0.0'.freeze
77
end

0 commit comments

Comments
 (0)