Skip to content

Commit 75c34f9

Browse files
committed
Prepare version 1.4.7 (now SNAPSHOT)
1 parent 641d4a8 commit 75c34f9

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.4.7 (future version)
4+
5+
- Fixed crash when canceling through RequestHandle from UI Thread (NetworkOnMainThreadException)
6+
37
## 1.4.6 (released 7. 9. 2014)
48

59
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)

build.gradle

Lines changed: 1 addition & 1 deletion
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.6'
17+
version = '1.4.7-SNAPSHOT'
1818

1919
repositories {
2020
mavenCentral()

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.4.6
2-
VERSION_CODE=146
1+
VERSION_NAME=1.4.7-SNAPSHOT
2+
VERSION_CODE=147
33
GROUP=com.loopj.android
44

55
POM_DESCRIPTION=An Asynchronous HTTP Library for Android

library/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
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.6"
5-
android:versionCode="146">
4+
android:versionName="1.4.7"
5+
android:versionCode="147">
66

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

sample/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
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="2"
6-
android:versionName="1.4.6">
5+
android:versionCode="3"
6+
android:versionName="1.4.7">
77

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

0 commit comments

Comments
 (0)