Skip to content

Commit cf70d2e

Browse files
committed
Release version 1.4.8
1 parent cf95c42 commit cf70d2e

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# CHANGELOG
22

3-
## 1.4.8 (future release)
3+
## 1.4.8 (released 17. 7. 2015)
4+
5+
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)
6+
List of closed issues is here [https://github.com/loopj/android-async-http/issues?milestone=7&state=closed](https://github.com/loopj/android-async-http/issues?milestone=7&state=closed)
47

58
- New constructor for BinaryHttpResponseHandler which takes Looper as argument (thanks to @ScottFrank)
69
- SaxAsyncHttpResponseHandler can be now provided with custom charset, instead of just using default one
@@ -18,7 +21,7 @@
1821

1922
## 1.4.7 (released 9. 5. 2015)
2023

21-
Complete list of commits included is here [https://github.com/loopj/android-async-http/commits/1.4.7](https://github.com/loopj/android-async-http/commits/1.4.7)
24+
Complete list of commits included is here [https://github.com/loopj/android-async-http/commits/1.4.7](https://github.com/loopj/android-async-http/commits1.4.7)
2225
List of closed issues is here [https://github.com/loopj/android-async-http/issues?milestone=6&state=closed](https://github.com/loopj/android-async-http/issues?milestone=6&state=closed)
2326

2427
- Fixed crash when canceling through RequestHandle from UI Thread (NetworkOnMainThreadException)

README.md

+8-11
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.7 released on 9th May 2015
10+
See what is new in version 1.4.8 released on 17th July 2015
1111

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

1414
Javadoc
1515
-------
1616

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

1919
http://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.7/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.8/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,10 +53,10 @@ http://central.maven.org/maven2/com/loopj/android/android-async-http/
5353
Maven URL: http://repo1.maven.org/maven2/
5454
GroupId: com.loopj.android
5555
ArtifactId: android-async-http
56-
Version: 1.4.7
56+
Version: 1.4.8
5757
Packaging: JAR or AAR
5858
```
59-
Gradle: `com.loopj.android:android-async-http:1.4.7`
59+
Gradle: `com.loopj.android:android-async-http:1.4.8`
6060

6161
**development snapshots**
6262

@@ -65,17 +65,14 @@ https://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/androi
6565
Maven URL: https://oss.sonatype.org/content/repositories/snapshots/
6666
GroupId: com.loopj.android
6767
ArtifactId: android-async-http
68-
Version: 1.4.8-SNAPSHOT
68+
Version: 1.4.9-SNAPSHOT
6969
Packaging: JAR or AAR
7070
```
71-
Gradle: `com.loopj.android:android-async-http:1.4.8-SNAPSHOT`
71+
Gradle: `com.loopj.android:android-async-http:1.4.9-SNAPSHOT`
7272

7373
Documentation, Features and Examples
7474
------------------------------------
7575
Full details and documentation can be found on the project page here:
7676

7777
http://loopj.com/android-async-http/
7878

79-
80-
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/loopj/android-async-http/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
81-

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

1919
repositories {
2020
mavenCentral()

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
VERSION_NAME=1.4.8-SNAPSHOT
1+
VERSION_NAME=1.4.8
22
VERSION_CODE=148
33
GROUP=com.loopj.android
44

55
POM_DESCRIPTION=An Asynchronous HTTP Library for Android
6-
POM_URL=loopj.com/android-async-http/
6+
POM_URL=https://loopj.com/android-async-http/
77
POM_SCM_URL=https://github.com/loopj/android-async-http
88
POM_SCM_CONNECTION=scm:git@github.com:loopj/android-async-http.git
99
POM_SCM_DEV_CONNECTION=scm:git@github.com:loopj/android-async-http.git

releases/android-async-http-1.4.8.jar

104 KB
Binary file not shown.

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="3"
6-
android:versionName="1.4.7">
5+
android:versionCode="4"
6+
android:versionName="1.4.8">
77

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

0 commit comments

Comments
 (0)