Skip to content

Commit 86136cd

Browse files
committed
Prepared 1.4.10-SNAPSHOT release, replacing 1.5.0 which is currently being developed in separate branch
1 parent 10ac3b3 commit 86136cd

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
lines changed

CHANGELOG.md

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

3-
## 1.5.0 (future release)
3+
## 1.4.10
4+
5+
- Fixed IP/name resolution errors #998
6+
- Fixed SNI compatibility
47

58
## 1.4.9 (released 19. 9. 2015)
69

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ https://oss.sonatype.org/content/repositories/snapshots/com/loopj/android/androi
7474
Maven URL: https://oss.sonatype.org/content/repositories/snapshots/
7575
GroupId: com.loopj.android
7676
ArtifactId: android-async-http
77-
Version: 1.5.0-SNAPSHOT
77+
Version: 1.4.10-SNAPSHOT
7878
Packaging: JAR or AAR
7979
```
8080
Gradle
@@ -85,7 +85,7 @@ repositories {
8585
}
8686
}
8787
dependencies {
88-
compile 'com.loopj.android:android-async-http:1.5.0-SNAPSHOT'
88+
compile 'com.loopj.android:android-async-http:1.4.10-SNAPSHOT'
8989
}
9090
```
9191

build.gradle

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

1818
allprojects {
1919
group = 'com.loopj.android'
20-
version = '1.5.0-SNAPSHOT'
20+
version = '1.4.10-SNAPSHOT'
2121

2222
repositories {
2323
mavenLocal()

gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=1.5.0-SNAPSHOT
2-
VERSION_CODE=150
1+
VERSION_NAME=1.4.10-SNAPSHOT
2+
VERSION_CODE=1410
33
GROUP=com.loopj.android
44

55
POM_DESCRIPTION=An Asynchronous HTTP Library for Android

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

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

0 commit comments

Comments
 (0)