This repository was archived by the owner on Jan 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
src/main/java/com/algolia/search/saas Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
- ## Upcoming
4
+ ## 3.7.0 (2016-11-29)
5
5
6
- ### New features
6
+ ** This release includes backward-incompatible changes and requires the following updates** :
7
+ - (#178 ) ` getIgnorePlurals() ` should be replaced by ` getIgnorePlurals().enabled `
7
8
9
+ ### New features
8
10
- (#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 `
10
13
14
+ ### Other changes
15
+ - (#182 ) Deprecate ` setFacetFilters ` : you should use ` setFilters ` instead.
11
16
12
17
## 3.6.0 (2016-11-10)
13
18
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ apply plugin: 'com.android.library'
26
26
ext {
27
27
PUBLISH_GROUP_ID = rootProject. properties[" PUBLISH_GROUP_ID" ] ?: " com.algolia"
28
28
// NOTE: This is the official version number used during publication.
29
- PUBLISH_VERSION = ' 3.6 .0'
29
+ PUBLISH_VERSION = ' 3.7 .0'
30
30
}
31
31
32
32
android {
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public int hashCode() {
92
92
// ----------------------------------------------------------------------
93
93
94
94
/** This library's version. */
95
- private final static String version = "3.6 .0" ;
95
+ private final static String version = "3.7 .0" ;
96
96
97
97
// ----------------------------------------------------------------------
98
98
// Fields
You can’t perform that action at this time.
0 commit comments