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

Commit 8b15147

Browse files
author
Clément Le Provost
committed
Release 3.1
1 parent c398973 commit 8b15147

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

ChangeLog.md

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

4+
## 3.1 (2016-05-09)
5+
6+
- Add typed accessors for missing query parameters `filters` and `numericFilters`
7+
- Shuffle host array at init time, for better load balancing
8+
- Perform stricter check on GZip `Content-Encoding` HTTP header
9+
- Update documentation
10+
11+
412
## 3.0 (2016-04-14)
513

614
This major version brings new features as well as bug fixes. In addition, a lot of refactoring has been performed

algoliasearch/build.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"] ?: ""
2828
PUBLISH_ARTIFACT_ID = 'algoliasearch-android'
29-
PUBLISH_VERSION = '3.0'
29+
PUBLISH_VERSION = '3.1'
3030
}
3131

3232
android {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* </p>
6161
*/
6262
public class Client {
63-
private final static String version = "3.0";
63+
private final static String version = "3.1";
6464

6565
/** Connect timeout (ms). */
6666
private int connectTimeout = 2000;

0 commit comments

Comments
 (0)