Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit b89c6fb

Browse files
committed
Version 3.7.0
1 parent 1bcbd85 commit b89c6fb

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

ChangeLog.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
Change Log
22
==========
33

4-
## Upcoming
4+
## 3.7.0 (2016-11-29)
55

6-
### New features
6+
**This release includes backward-incompatible changes and requires the following updates**:
7+
- (#178) `getIgnorePlurals()` should be replaced by `getIgnorePlurals().enabled`
78

9+
### New features
810
- (#163) Search in your facets values with `Index.searchForFacetValues`
9-
- (#178) Accept a list of language ISO codes for ignorePlurals. **Note**: this introduces backward-incompatible changes.
11+
- (#178) Ignore plurals _only for some languages_: `Query.setIgnorePlurals` can take a list of language ISO codes for ignorePlurals.
12+
- (#183) Whitelist the fields returned in the response for a search query with `Query.setResponseFields`
1013

14+
### Other changes
15+
- (#182) Deprecate `setFacetFilters`: you should use `setFilters` instead.
1116

1217
## 3.6.0 (2016-11-10)
1318

algoliasearch/common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
2626
ext {
2727
PUBLISH_GROUP_ID = rootProject.properties["PUBLISH_GROUP_ID"] ?: "com.algolia"
2828
// NOTE: This is the official version number used during publication.
29-
PUBLISH_VERSION = '3.6.0'
29+
PUBLISH_VERSION = '3.7.0'
3030
}
3131

3232
android {

algoliasearch/src/main/java/com/algolia/search/saas/AbstractClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public int hashCode() {
9292
// ----------------------------------------------------------------------
9393

9494
/** This library's version. */
95-
private final static String version = "3.6.0";
95+
private final static String version = "3.7.0";
9696

9797
// ----------------------------------------------------------------------
9898
// Fields

0 commit comments

Comments
 (0)