This repository was archived by the owner on Jan 31, 2022. It is now read-only.
File tree 3 files changed +10
-2
lines changed
src/main/java/com/algolia/search/saas
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
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
+
4
12
## 3.0 (2016-04-14)
5
13
6
14
This major version brings new features as well as bug fixes. In addition, a lot of refactoring has been performed
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" ] ?: " "
28
28
PUBLISH_ARTIFACT_ID = ' algoliasearch-android'
29
- PUBLISH_VERSION = ' 3.0 '
29
+ PUBLISH_VERSION = ' 3.1 '
30
30
}
31
31
32
32
android {
Original file line number Diff line number Diff line change 60
60
* </p>
61
61
*/
62
62
public class Client {
63
- private final static String version = "3.0 " ;
63
+ private final static String version = "3.1 " ;
64
64
65
65
/** Connect timeout (ms). */
66
66
private int connectTimeout = 2000 ;
You can’t perform that action at this time.
0 commit comments