Commit 3bfdc4a1da704ee52002e72a8fc9b4b9764fe0c0

Authored by Andrew Kane
1 parent a085e0fb

Version bump

CHANGELOG.md
1   -## 0.4.2 [unreleased]
  1 +## 0.4.2
2 2  
3 3 - Added `should_index?` method to control which records are indexed
4 4 - Added ability to temporarily disable callbacks
... ...
README.md
... ... @@ -197,7 +197,7 @@ class Product < ActiveRecord::Base
197 197 end
198 198 ```
199 199  
200   -[master branch] By default, all records are indexed. To control which records are indexed, use the `should_index?` method.
  200 +By default, all records are indexed. To control which records are indexed, use the `should_index?` method.
201 201  
202 202 ```ruby
203 203 class Product < ActiveRecord::Base
... ... @@ -506,7 +506,7 @@ Then deploy and reindex:
506 506 rake searchkick:reindex CLASS=Product
507 507 ```
508 508  
509   -## Advanced [master]
  509 +## Advanced
510 510  
511 511 Prefer to use the [Elasticsearch DSL](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-queries.html) but still want awesome features like zero-downtime reindexing?
512 512  
... ... @@ -571,7 +571,7 @@ class Product &lt; ActiveRecord::Base
571 571 end
572 572 ```
573 573  
574   -or temporarily [master branch]
  574 +or temporarily
575 575  
576 576 ```ruby
577 577 Product.disable_search_callbacks # use Searchkick.disable_callbacks for all models
... ...
lib/searchkick/version.rb
1 1 module Searchkick
2   - VERSION = "0.4.1"
  2 + VERSION = "0.4.2"
3 3 end
... ...