Skip to content

Commit 5acfc78

Browse files
committed
Release 7.1.0
1 parent 82d799e commit 5acfc78

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

CHANGELOG.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 7.0.0.pre
1+
## 7.1.0
2+
3+
* Tested with elasticsearch Ruby client version 7.6.0
4+
* Updates rake version
5+
* Adds pipeline to bulk params [commit](https://github.com/elastic/elasticsearch-rails/commit/63c24c9fe48a74d00c65145cc55c32f4c6907448)
6+
7+
## 7.0.0
28

39
* Update test tasks and travis (#840)
410
* `respond_to_missing?` to silence Ruby 2.4 warnings (#838)
@@ -7,7 +13,6 @@
713
* Only execute update if document attributes is not empty (#862)
814
* Remove bundler version requirement in gemspec files
915
* 7.0 support (#875)
10-
* Update version to 7.0.0.pre
1116

1217
### ActiveModel
1318

elasticsearch-model/lib/elasticsearch/model/version.rb

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

1818
module Elasticsearch
1919
module Model
20-
VERSION = "7.0.0"
20+
VERSION = "7.1.0"
2121
end
2222
end

elasticsearch-persistence/elasticsearch-persistence.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Gem::Specification.new do |s|
4141
s.required_ruby_version = ">= 1.9.3"
4242

4343
s.add_dependency "elasticsearch", '~> 7'
44-
s.add_dependency "elasticsearch-model", '7.0.0'
44+
s.add_dependency "elasticsearch-model", '7.1.0'
4545
s.add_dependency "activesupport", '> 4'
4646
s.add_dependency "activemodel", '> 4'
4747
s.add_dependency "hashie"

elasticsearch-persistence/lib/elasticsearch/persistence/version.rb

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

1818
module Elasticsearch
1919
module Persistence
20-
VERSION = '7.0.0'
20+
VERSION = '7.1.0'
2121
end
2222
end

elasticsearch-rails/lib/elasticsearch/rails/version.rb

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

1818
module Elasticsearch
1919
module Rails
20-
VERSION = "7.0.0"
20+
VERSION = "7.1.0"
2121
end
2222
end

0 commit comments

Comments
 (0)