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

Commit

Permalink
Prepare for 2.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ricellis committed Sep 12, 2016
1 parent 30b68c2 commit cece24b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 2.6.0 (2016-09-12)
- [NEW] Enabled `reduce` and other reduce related parameters to be set when using
`MultipleRequestBuilder`.
- [FIX] Consumed response streams in `client.shutdown()` and `CookieInterceptor` to prevent
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ This is the official Cloudant library for Java.
Gradle:
```groovy
dependencies {
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.5.1'
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.6.0'
}
```

Gradle with [optional `okhttp-urlconnection` dependency](#optional-okhttp-dependency):
```groovy
dependencies {
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.5.1'
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.6.0'
compile group: 'com.squareup.okhttp', name: 'okhttp-urlconnection', version: '2.7.5'
}
```
Expand All @@ -39,7 +39,7 @@ Maven:
<dependency>
<groupId>com.cloudant</groupId>
<artifactId>cloudant-client</artifactId>
<version>2.5.1</version>
<version>2.6.0</version>
</dependency>
~~~

Expand All @@ -49,7 +49,7 @@ Maven with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depende
<dependency>
<groupId>com.cloudant</groupId>
<artifactId>cloudant-client</artifactId>
<version>2.5.1</version>
<version>2.6.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ subprojects {
apply plugin: 'signing'

group = 'com.cloudant'
version = '2.5.2-SNAPSHOT'
version = '2.6.0'

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

0 comments on commit cece24b

Please sign in to comment.