diff --git a/ChangeLog b/ChangeLog index 5f13eda..1e61a39 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,9 @@ CHANGELOG -2015-07-XX X.X.X +2015-07-09 1.2.1 * [ADD] `get_queryset` for grain indexing possibility * [ADD] Option to deactivate auto-indexing + * [FIX] Various bugs 2015-07-04 1.2.0 * [REMOVE] algolia_buildindex command. Use algolia_reindex instead. diff --git a/README.md b/README.md index b6fb3f5..544db99 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ There are two optional settings: * `INDEX_PREFIX`: prefix all indexes. Use it to separate different applications, like `site1_Products` and `site2_Products`. * `INDEX_SUFFIX`: suffix all indexes. Use it to differenciate development and production environment, like `Location_dev` and `Location_prod`. - +* `AUTO_INDEXING`: automatically synchronize the models with Algolia (default to **True**). Quick Start ------------- diff --git a/src/version.py b/src/version.py index ee65984..f30a0b8 100644 --- a/src/version.py +++ b/src/version.py @@ -1 +1 @@ -VERSION = '1.2.0' +VERSION = '1.2.1'