Skip to content

Commit 85be8ca

Browse files
committed
Release 0.1.7
1 parent 5b00030 commit 85be8ca

File tree

6 files changed

+26
-3
lines changed

6 files changed

+26
-3
lines changed

elasticsearch-model/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.1.7
2+
3+
* Improved examples and instructions in README and code annotations
4+
* Prevented index methods to swallow all exceptions
5+
* Added the `:validate` option to the `save` method for models
6+
* Added support for searching across multiple models (elastic/elasticsearch-rails#345),
7+
including documentation, examples and tests
8+
19
## 0.1.6
210

311
* Improved documentation
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Model
3-
VERSION = "0.1.6"
3+
VERSION = "0.1.7"
44
end
55
end

elasticsearch-persistence/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.1.7
2+
3+
* Added an integration test for the `MyModel.all` method
4+
* Improved the "music" example application
5+
16
## 0.1.6
27

38
* Improved documentation
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Persistence
3-
VERSION = "0.1.6"
3+
VERSION = "0.1.7"
44
end
55
end

elasticsearch-rails/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 0.1.7
2+
3+
* Updated dependencies for the gem and example applications
4+
* Fixed various small errors in the `01-basic.rb` template
5+
* Fixed error when inserting the Kaminari gem into Gemfile in the 02-pretty.rb template
6+
* Fixed incorrect regex for adding Rails instrumentation into the application.rb in the `02-pretty.rb` template
7+
* Fixed other small errors in the `02-pretty.rb` template
8+
* Improved and added tests for the generated application from the `02-pretty.rb` template
9+
* Added the `04-dsl.rb` template which uses the `elasticsearch-dsl` gem to build the search definition
10+
111
## 0.1.6
212

313
* Fixed errors in templates for the Rails example applications
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Elasticsearch
22
module Rails
3-
VERSION = "0.1.6"
3+
VERSION = "0.1.7"
44
end
55
end

0 commit comments

Comments
 (0)