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.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ricellis committed May 24, 2016
1 parent 9490872 commit 75e9b2b
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.5.0 (2016-05-24)
- [NEW] Handle HTTP status code `429 Too Many Requests` with blocking backoff and retries.
- [NEW] Added `DesignDocumentManager.list()` to return all design documents defined in a database.
- [NEW] Added an optional `SettableViewParameters.STALE_NO` constant for the default omitted case of
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.4.3'
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.5.0'
}
```

Gradle with [optional `okhttp-urlconnection` dependency](#optional-okhttp-dependency):
```groovy
dependencies {
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.4.3'
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.5.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.4.3</version>
<version>2.5.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.4.3</version>
<version>2.5.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.0-SNAPSHOT'
version = '2.5.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 75e9b2b

Please sign in to comment.