diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c37c8753..f1e47ebd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### Release 2.2.10 (March 26, 2020) +[Milestone#48](https://github.com/awslabs/amazon-kinesis-client/milestone/48) +* Fixing a bug in DynamoDB billing mode support for special regions. + * [PR#703](https://github.com/awslabs/amazon-kinesis-client/pull/703) +* Adding request id logging to ShardConsumerSubscriber. + * [PR#705](https://github.com/awslabs/amazon-kinesis-client/pull/705) + ### Release 2.2.9 (Febuary 17, 2020) [Milestone#47](https://github.com/awslabs/amazon-kinesis-client/milestone/47) * Updating the AWS SDK version to 2.10.66. diff --git a/README.md b/README.md index 1d1470c7a..1a12ef2dd 100644 --- a/README.md +++ b/README.md @@ -63,12 +63,12 @@ The recommended way to use the KCL for Java is to consume it from Maven. ## Release Notes -### Latest Release 2.2.9 (Febuary 17, 2020) -[Milestone#47](https://github.com/awslabs/amazon-kinesis-client/milestone/47) -* Updating the AWS SDK version to 2.10.66. - * [PR#687](https://github.com/awslabs/amazon-kinesis-client/commit/8aaf2aa11c43f77f459732cdb7d88f4418d367ff) -* Adding request id logging to SubscribeToShard response. - * [PR#678](https://github.com/awslabs/amazon-kinesis-client/pull/678) +### Release 2.2.10 (March 26, 2020) +[Milestone#48](https://github.com/awslabs/amazon-kinesis-client/milestone/48) +* Fixing a bug in DynamoDB billing mode support for special regions. + * [PR#703](https://github.com/awslabs/amazon-kinesis-client/pull/703) +* Adding request id logging to ShardConsumerSubscriber. + * [PR#705](https://github.com/awslabs/amazon-kinesis-client/pull/705) ### For remaining release notes check **[CHANGELOG.md][changelog-md]**. diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml index f4b6641c4..07c8e63df 100644 --- a/amazon-kinesis-client-multilang/pom.xml +++ b/amazon-kinesis-client-multilang/pom.xml @@ -21,7 +21,7 @@ amazon-kinesis-client-pom software.amazon.kinesis - 2.2.10-SNAPSHOT + 2.2.10 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 5246aee4f..6339b0ba9 100644 --- a/amazon-kinesis-client/pom.xml +++ b/amazon-kinesis-client/pom.xml @@ -22,7 +22,7 @@ software.amazon.kinesis amazon-kinesis-client-pom - 2.2.10-SNAPSHOT + 2.2.10 amazon-kinesis-client diff --git a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java index cfd196540..35dad2431 100644 --- a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java +++ b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java @@ -34,7 +34,7 @@ public class RetrievalConfig { */ public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java"; - public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.10-SNAPSHOT"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.10"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index bdd2d0c2c..388382fb4 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.2.10-SNAPSHOT + 2.2.10 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis.