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

Commit 034ada8

Browse files
author
Clément Le Provost
committed
Version 3.2.1
1 parent d62247b commit 034ada8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

ChangeLog.md

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

4+
## 3.2.1 (2016-05-31)
5+
6+
- Fix erroneous archive: remove extraneous `android.support.v7.appcompat.R` class (fixes #88)
7+
- Improve release script
8+
- Update documentation
9+
10+
411
## 3.2 (2016-05-26)
512

613
- Network requests are now run in parallel, whereas they were sequential before. This is required for better performance. **Warning: Client code must make sure to protect against out-of-order requests.**

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'
29+
PUBLISH_VERSION = '3.2.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
@@ -65,7 +65,7 @@
6565
* </p>
6666
*/
6767
public class Client {
68-
private final static String version = "3.2";
68+
private final static String version = "3.2.1";
6969

7070
protected String userAgent = "Algolia for Android " + version;
7171

0 commit comments

Comments
 (0)