Skip to content

Commit

Permalink
Version bump 3.1.0 (Azure#4896)
Browse files Browse the repository at this point in the history
* New version changes - 3.1.0

* Fixed Hello World Demo Link
  • Loading branch information
kushagraThapar authored and pull[bot] committed Aug 8, 2019
1 parent cdff76c commit 6107528
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions sdk/cosmos/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Java SDK for SQL API of Azure Cosmos DB

[![Maven Central](https://img.shields.io/maven-central/v/com.microsoft.azure/azure-cosmos.svg)](https://search.maven.org/artifact/com.microsoft.azure/azure-cosmos/3.0.1/jar)
[![Maven Central](https://img.shields.io/maven-central/v/com.microsoft.azure/azure-cosmos.svg)](https://search.maven.org/artifact/com.microsoft.azure/azure-cosmos)
[![Known Vulnerabilities](https://snyk.io/test/github/Azure/azure-cosmosdb-java/badge.svg?targetFile=sdk%2Fpom.xml)](https://snyk.io/test/github/Azure/azure-cosmosdb-java?targetFile=sdk%2Fpom.xml)

<!--[![Coverage Status](https://img.shields.io/codecov/c/github/Azure/azure-cosmos-java.svg)](https://codecov.io/gh/Azure/azure-cosmosdb-java)
Expand All @@ -23,7 +23,7 @@

## Example

See the complete code for the above sample in [`HelloWorldExample.java`](./examples/src/main/java/com/azure/data/cosmos/examples/HelloWorldExample.java)
See the complete code for the above sample in [`HelloWorldDemo.java`](./microsoft-azure-cosmos-examples/src/main/java/com/azure/data/cosmos/examples/HelloWorldDemo.java)

```java
import com.azure.data.cosmos.*;
Expand Down Expand Up @@ -91,7 +91,7 @@ For example, using maven, you can add the following dependency to your maven pom
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmos</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</dependency>
```

Expand Down
3 changes: 3 additions & 0 deletions sdk/cosmos/changelog/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

### 3.1.0
- Added CosmosKeyCredential support in CosmosClientBuilder to support account key rotation.

### 3.0.1
- Token Resolver null check fix in Cosmos Client Builder

Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/microsoft-azure-cosmos-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Licensed under the MIT License.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmos-parent</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</parent>

<groupId>com.microsoft.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/microsoft-azure-cosmos-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Licensed under the MIT License.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmos-parent</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</parent>

<groupId>com.microsoft.azure</groupId>
Expand Down
2 changes: 1 addition & 1 deletion sdk/cosmos/microsoft-azure-cosmos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Licensed under the MIT License.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmos-parent</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
</parent>

<groupId>com.microsoft.azure</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public static class Versions {
// TODO: FIXME we can use maven plugin for generating a version file
// @see
// https://stackoverflow.com/questions/2469922/generate-a-version-java-file-in-maven
public static final String SDK_VERSION = "3.0.1";
public static final String SDK_VERSION = "3.1.0";
public static final String SDK_NAME = "cosmosdb-java-sdk";
}

Expand Down
8 changes: 4 additions & 4 deletions sdk/cosmos/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Licensed under the MIT License.

<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmos-parent</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<packaging>pom</packaging>

<name>Microsoft Azure Cosmos DB SQL API</name>
Expand All @@ -34,11 +34,11 @@ Licensed under the MIT License.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<cosmosdb-sdk-direct-impl.version>3.0.1</cosmosdb-sdk-direct-impl.version>
<direct-connectivity-version>3.0.1</direct-connectivity-version>
<cosmosdb-sdk-direct-impl.version>3.1.0</cosmosdb-sdk-direct-impl.version>
<direct-connectivity-version>3.1.0</direct-connectivity-version>
<mockito.version>1.10.19</mockito.version>
<netty.version>4.1.36.Final</netty.version>
<sdk-version>3.0.1</sdk-version>
<sdk-version>3.1.0</sdk-version>
<guava.version>27.0.1-jre</guava.version>
<reactor-core.version>3.2.9.RELEASE</reactor-core.version>
<netty-tcnative.version>2.0.25.Final</netty-tcnative.version>
Expand Down

0 comments on commit 6107528

Please sign in to comment.