Skip to content

Commit 95b9d34

Browse files
committed
Bumping the version, updating other sub projects
1 parent 3645dec commit 95b9d34

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v5.2.0
2+
------
3+
* Upgrade AsyncHttpClient - Backwards incompatible due to namespace of AsyncHttpClient changing along with class names and private vs public access.
4+
15
v5.1.17
26
------
37
* Use dedicated executor service for lambda analysis

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
version=5.1.17
1+
version=5.2.0
22
group=com.linkedin.parseq
33
org.gradle.parallel=true

subprojects/parseq-examples/src/main/java/com/linkedin/parseq/example/introduction/IntroductoryExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.linkedin.parseq.example.common.AbstractExample;
66
import com.linkedin.parseq.example.common.ExampleUtil;
77
import com.linkedin.parseq.httpclient.HttpClient;
8-
import com.ning.http.client.Response;
8+
import org.asynchttpclient.Response;
99

1010

1111
/**

subprojects/parseq-examples/src/main/java/com/linkedin/parseq/example/javadoc/JavadocExamples.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import com.linkedin.parseq.function.Success;
1313
import com.linkedin.parseq.function.Try;
1414
import com.linkedin.parseq.httpclient.HttpClient;
15-
import com.ning.http.client.Response;
1615

1716

1817
/**

subprojects/parseq-http-client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ ext {
33
}
44

55
dependencies {
6-
implementation group: 'org.asynchttpclient', name: 'async-http-client', version:'2.12.3'
6+
api group: 'org.asynchttpclient', name: 'async-http-client', version:'2.12.3'
77
}

0 commit comments

Comments
 (0)