Skip to content

Commit 606130a

Browse files
committed
1.4.9 Version release
1 parent db7415c commit 606130a

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

CHANGELOG.md

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

3+
## 1.5.0 (future release)
4+
5+
## 1.4.9 (released 19. 9. 2015)
6+
7+
Complete list of commits included is here [https://github.com/loopj/android-async-http/commits/1.4.9](https://github.com/loopj/android-async-http/commits/1.4.9)
8+
List of closed issues is here [https://github.com/loopj/android-async-http/issues?milestone=8&state=closed](https://github.com/loopj/android-async-http/issues?milestone=8&state=closed)
9+
10+
- **IMPORTANT**, We've switched library from using `org.apache.http` to use `cz.msebera.android.httpclient`, you have to update all your code
11+
- Library is from now on using upstream version of HttpClient libraries, provided by repackaging project https://github.com/smarek/httpclient-android/
12+
- Achieved API23 Compatibility, see #830 for more info
13+
- Added HeadSample into sample application, to verify Head request works as it should
14+
- FileAsyncHttpResponseHandler now has constructor with `usePoolThread` param, which causes callbacks to be fired from ThreadPool instead of main looper
15+
316
## 1.4.8 (released 17. 7. 2015)
417

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

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ An asynchronous, callback-based Http client for Android built on top of Apache's
77
Changelog
88
---------
99

10-
See what is new in version 1.4.8 released on 17th July 2015
10+
See what is new in version 1.4.9 released on 19th September 2015
1111

12-
https://github.com/loopj/android-async-http/blob/1.4.8/CHANGELOG.md
12+
https://github.com/loopj/android-async-http/blob/1.4.9/CHANGELOG.md
1313

1414
Javadoc
1515
-------
1616

17-
Latest Javadoc for 1.4.8 release are available here (also included in Maven repository):
17+
Latest Javadoc for 1.4.9 release are available here (also included in Maven repository):
1818

1919
https://loopj.com/android-async-http/doc/
2020

@@ -35,7 +35,7 @@ Examples
3535
--------
3636

3737
For inspiration and testing on device we've provided Sample Application.
38-
See individual samples [here on Github](https://github.com/loopj/android-async-http/tree/1.4.8/sample/src/main/java/com/loopj/android/http/sample)
38+
See individual samples [here on Github](https://github.com/loopj/android-async-http/tree/1.4.9/sample/src/main/java/com/loopj/android/http/sample)
3939
To run Sample application, simply clone the repository and run this command, to install it on connected device
4040

4141
```java
@@ -53,7 +53,7 @@ https://repo1.maven.org/maven2/com/loopj/android/android-async-http/
5353
Maven URL: https://repo1.maven.org/maven2/
5454
GroupId: com.loopj.android
5555
ArtifactId: android-async-http
56-
Version: 1.4.8
56+
Version: 1.4.9
5757
Packaging: JAR or AAR
5858
```
5959
Gradle
@@ -64,7 +64,7 @@ repositories {
6464
}
6565
}
6666
dependencies {
67-
compile 'com.loopj.android:android-async-http:1.4.8'
67+
compile 'com.loopj.android:android-async-http:1.4.9'
6868
}
6969
```
7070

@@ -75,7 +75,7 @@ https://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/androi
7575
Maven URL: https://oss.sonatype.org/content/repositories/snapshots/
7676
GroupId: com.loopj.android
7777
ArtifactId: android-async-http
78-
Version: 1.4.9-SNAPSHOT
78+
Version: 1.5.0-SNAPSHOT
7979
Packaging: JAR or AAR
8080
```
8181
Gradle
@@ -86,7 +86,7 @@ repositories {
8686
}
8787
}
8888
dependencies {
89-
compile 'com.loopj.android:android-async-http:1.4.9-SNAPSHOT'
89+
compile 'com.loopj.android:android-async-http:1.5.0-SNAPSHOT'
9090
}
9191
```
9292

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.9-SNAPSHOT'
17+
version = '1.4.9'
1818

1919
repositories {
2020
mavenLocal()

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.4.9-SNAPSHOT
1+
VERSION_NAME=1.4.9
22
VERSION_CODE=149
33
GROUP=com.loopj.android
44

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="5"
6-
android:versionName="1.4.9-SNAPSHOT">
5+
android:versionCode="6"
6+
android:versionName="1.4.9">
77

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

0 commit comments

Comments
 (0)