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

Commit b39f899

Browse files
author
Clément Le Provost
committed
Version 3.2
1 parent fc51bd2 commit b39f899

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

ChangeLog.md

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

4+
## 3.2 (2016-05-26)
5+
6+
- 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.**
7+
- Better error reporting:
8+
- Always propagate cause exception when available
9+
- Always report HTTP status code when available
10+
- Add ability to distinguish transient errors from fatal errors after they are reported
11+
- Update documentation
12+
- README updated
13+
- Clarify documentation of `AlgoliaException`’s status code
14+
- [Test] Add test case for DNS time-out
15+
16+
### Experimental features
17+
18+
- Offline mode. *Note: requires the Algolia Search Offline Core library.* **Warning: beta version.**
19+
20+
421
## 3.1 (2016-05-09)
522

623
- Add typed accessors for missing query parameters `filters` and `numericFilters`

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.1-SNAPSHOT'
29+
PUBLISH_VERSION = '3.2'
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.1";
68+
private final static String version = "3.2";
6969

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

0 commit comments

Comments
 (0)