Skip to content

Commit f7502df

Browse files
committedJul 20, 2019
Version 1.4.10 release
1 parent b9592e1 commit f7502df

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed
 

‎.travis.yml

-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,4 @@ android:
1212
licenses:
1313
- '.+'
1414
script:
15-
# Sonatype bypass
16-
- echo "nexusUsername=dummy" >> library/gradle.properties
17-
- echo "nexusPassword=dummy" >> library/gradle.properties
1815
- ./gradlew clean assemble check
19-
- ./gradlew :library:androidJavadocs

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -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.9
56+
Version: 1.4.10
5757
Packaging: JAR or AAR
5858
```
5959
Gradle
@@ -63,7 +63,7 @@ repositories {
6363
}
6464
6565
dependencies {
66-
compile 'com.loopj.android:android-async-http:1.4.9'
66+
compile 'com.loopj.android:android-async-http:1.4.10'
6767
}
6868
```
6969

@@ -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.4.10-SNAPSHOT
77+
Version: 1.4.11-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.4.10-SNAPSHOT'
88+
compile 'com.loopj.android:android-async-http:1.4.11-SNAPSHOT'
8989
}
9090
```
9191

‎build.gradle

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

2121
allprojects {
2222
group = 'com.loopj.android'
23-
version = '1.4.10-SNAPSHOT'
23+
version = '1.4.10'
2424

2525
repositories {
2626
google()

‎gradle.properties

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

‎sample/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
44
package="com.loopj.android.http.sample"
55
android:versionCode="8"
6-
android:versionName="1.4.10-SNAPSHOT">
6+
android:versionName="1.4.10">
77

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

0 commit comments

Comments
 (0)
Please sign in to comment.