Skip to content
This repository was archived by the owner on Mar 11, 2022. It is now read-only.

Commit 547ea4e

Browse files
committed
Prepare for 2.4.2 release
1 parent a06f12d commit 547ea4e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Unreleased
1+
# 2.4.2 (2016-04-07)
22
- [IMPROVED] Use the JVM default chunk size for HTTP content of unknown length.
33
- [FIX] Regression where `JsonParseException` would be thrown if `Database.findByIndex` selector
44
contained leading whitespace.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ This is the official Cloudant library for Java.
2121
Gradle:
2222
```groovy
2323
dependencies {
24-
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.4.1'
24+
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.4.2'
2525
}
2626
```
2727

2828
Gradle with [optional `okhttp-urlconnection` dependency](#optional-okhttp-dependency):
2929
```groovy
3030
dependencies {
31-
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.4.1'
31+
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.4.2'
3232
compile group: 'com.squareup.okhttp', name: 'okhttp-urlconnection', version: '2.7.5'
3333
}
3434
```
@@ -38,7 +38,7 @@ Maven:
3838
<dependency>
3939
<groupId>com.cloudant</groupId>
4040
<artifactId>cloudant-client</artifactId>
41-
<version>2.4.1</version>
41+
<version>2.4.2</version>
4242
</dependency>
4343
~~~
4444

@@ -48,7 +48,7 @@ Maven with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depende
4848
<dependency>
4949
<groupId>com.cloudant</groupId>
5050
<artifactId>cloudant-client</artifactId>
51-
<version>2.4.1</version>
51+
<version>2.4.2</version>
5252
</dependency>
5353

5454
<dependency>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subprojects {
1818
apply plugin: 'signing'
1919

2020
group = 'com.cloudant'
21-
version = '2.4.2-SNAPSHOT'
21+
version = '2.4.2'
2222

2323
// Note the gradle subproject names (e.g. cloudant-client, cloudant-http) are the maven
2424
// artifactIds - the maven pom project name entry and User-Agent name in client.properties are

0 commit comments

Comments
 (0)