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

Commit 9c01815

Browse files
committed
Version 3.3.0
1 parent d990d6a commit 9c01815

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ChangeLog.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
Change Log
22
==========
33

4-
## Next version
4+
## 3.3.0 (2016-07-28)
55

6+
- removeStopWords can be either a list of language codes or a boolean, see [documentation](https://www.algolia.com/doc/rest-api/search#param-removeStopWords-2).
7+
- Implement new exact API: see [documentation](https://www.algolia.com/doc/rest-api/search#param-exactOnSingleWordQuery) for the new `exactOnSingleWordQuery` and `alternativesAsExact` parameters.
8+
- Remove app_name string resource (fixes #104)
69
- New `Index.multipleQueriesAsync()` method (convenience shortcut to `Client.multipleQueriesAsync()`)
710

811
The following changes impact the offline mode only:

algoliasearch/common.gradle

+1-1
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.2.2'
29+
PUBLISH_VERSION = '3.3.0'
3030
}
3131

3232
android {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* </p>
6464
*/
6565
public class Client {
66-
private final static String version = "3.2.2";
66+
private final static String version = "3.3.0";
6767

6868
protected String userAgent = "Algolia for Android " + version;
6969

0 commit comments

Comments
 (0)