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 +8
-2
lines changed
src/main/java/com/algolia/search/saas Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## 3.2.2 (2016-06-06)
5
+
6
+ - Better resource handling: close client streams and connection when appropriate
7
+ - Remove any dependency to Apache HTTP cliuent
8
+ - Update documentation: detailed needed ACLs for offline mode
9
+
4
10
## 3.2.1 (2016-05-31)
5
11
6
12
- Fix erroneous archive: remove extraneous ` android.support.v7.appcompat.R ` class (fixes #88 )
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.2.1 '
29
+ PUBLISH_VERSION = ' 3.2.2 '
30
30
}
31
31
32
32
android {
Original file line number Diff line number Diff line change 63
63
* </p>
64
64
*/
65
65
public class Client {
66
- private final static String version = "3.2.1 " ;
66
+ private final static String version = "3.2.2 " ;
67
67
68
68
protected String userAgent = "Algolia for Android " + version ;
69
69
You can’t perform that action at this time.
0 commit comments