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.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ricellis committed Dec 4, 2015
1 parent 75f11dd commit 9ff293b
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.1.0 (2015-12-04)
- [IMPROVED] Included error and reason information in message from `CouchDbException` classes.
- [IMPROVED] Added HTTP status code to `Response` objects.
- [IMPROVED] Added parameter pagination option for views. See `ViewRequest.getResponse(String)`.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ This is the official Cloudant library for Java.
Gradle:
```groovy
dependencies {
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.0.0'
compile group: 'com.cloudant', name: 'cloudant-client', version: '2.1.0'
}
```

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

Expand All @@ -46,7 +46,7 @@ Maven with [optional `okhttp-urlconnection` dependency](#optional-okhttp-depende
<dependency>
<groupId>com.cloudant</groupId>
<artifactId>cloudant-client</artifactId>
<version>2.0.0</version>
<version>2.1.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 @@ -3,7 +3,7 @@ apply plugin: 'maven'
apply plugin: 'signing'

group = 'com.cloudant'
version = '2.0.1-SNAPSHOT'
version = '2.1.0'
description = """java-cloudant"""
//note the gradle project name (cloudant-client) is the maven artifactId
//the maven pom name entry and User-Agent name in client.properties are defined by clientName
Expand Down

0 comments on commit 9ff293b

Please sign in to comment.