Skip to content

Commit ab29784

Browse files
committed
Prepare release of 1.4.6 version, now in SNAPSHOT mode
1 parent 566f46f commit ab29784

File tree

6 files changed

+27
-9
lines changed

6 files changed

+27
-9
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# CHANGELOG
22

3+
## 1.4.6 (future version)
4+
5+
Complete list of commits included is here [https://github.com/loopj/android-async-http/commits/1.4.6](https://github.com/loopj/android-async-http/commits/1.4.6)
6+
List of closed issues is here [https://github.com/loopj/android-async-http/issues?milestone=4&state=closed](https://github.com/loopj/android-async-http/issues?milestone=2&state=closed)
7+
8+
- Fixed missing boundary when passing content-type as call param along with HttpEntity
9+
- Added warnings for not overriden calls in JsonHttpResponseHandler (and others)
10+
- RequestParams now implement Serializable, to support storing them and passing them along
11+
- Added option to add File part with custom file name (overriding the real file name)
12+
- Fixed not-escaped contents in JsonStreamEntity
13+
- Separated connect and response timeout settings
14+
- Allowed to pass Looper into *HttpResponseHandler classes
15+
- Fixed reporting progress on GZIP compressed down-streams
16+
- Added more samples (eg. AsyncBackgroundThreadSample.java, ContentTypeForHttpEntitySample.java, PrePostProcessingSample.java)
17+
- Added option to pre- and post- process data in AsyncHttpRequest.java via subclass (see PrePostProcessingSample.java)
18+
- Fixed ConcurrentModificationException on AsyncHttpClient.cancelRequests
19+
- Fixed handling BOM in decoding response in TextHttpResponseHandler and JsonHttpResponseHandler
20+
321
## 1.4.5 (released 22. 6. 2014)
422

523
Complete list of commits included is here [https://github.com/loopj/android-async-http/commits/1.4.5](https://github.com/loopj/android-async-http/commits/1.4.5)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def isReleaseBuild() {
1414

1515
allprojects {
1616
group = 'com.loopj.android'
17-
version = '1.4.5'
17+
version = '1.4.6-SNAPSHOT'
1818

1919
repositories {
2020
mavenCentral()

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.4.5
2-
VERSION_CODE=145
1+
VERSION_NAME=1.4.6-SNAPSHOT
2+
VERSION_CODE=146
33
GROUP=com.loopj.android
44

55
POM_DESCRIPTION=An Asynchronous HTTP Library for Android

library/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.loopj.android.http"
4-
android:versionName="1.4.5"
5-
android:versionCode="145">
4+
android:versionName="1.4.6"
5+
android:versionCode="146">
66

77
<uses-permission android:name="android.permission.INTERNET"/>
88

library/src/main/java/com/loopj/android/http/AsyncHttpClient.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -474,8 +474,8 @@ public int getTimeout() {
474474
* 10 seconds.
475475
*
476476
* @param value the connect/socket timeout in milliseconds, at least 1 second
477-
* @see {@link #setConnectTimeout(int)} if you need further refinement for either value or
478-
* or {@link #setResponseTimeout(int)} methods.
477+
* @see #setConnectTimeout(int)
478+
* @see #setResponseTimeout(int)
479479
*/
480480
public void setTimeout(int value) {
481481
value = value < 1000 ? DEFAULT_SOCKET_TIMEOUT : value;

sample/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
44
package="com.loopj.android.http.sample"
5-
android:versionCode="1"
6-
android:versionName="1.0">
5+
android:versionCode="2"
6+
android:versionName="2.0">
77

88
<uses-permission android:name="android.permission.INTERNET"/>
99

0 commit comments

Comments
 (0)