diff --git a/CHANGELOG.md b/CHANGELOG.md index fe05b873..7ee57196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### 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.8 (January 28, 2020) [Milestone#46](https://github.com/awslabs/amazon-kinesis-client/milestone/45) * Updating the AWS SDK version to 2.10.56. diff --git a/README.md b/README.md index 12cb85c0..1d1470c7 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven. software.amazon.kinesis amazon-kinesis-client - 2.2.4 + 2.2.9 ``` @@ -63,14 +63,12 @@ The recommended way to use the KCL for Java is to consume it from Maven. ## Release Notes -### Latest Release (2.2.8 - January 28 2020) -[Milestone#46](https://github.com/awslabs/amazon-kinesis-client/milestone/45) -* Updating the AWS SDK version to 2.10.56. - * [PR#679](https://github.com/awslabs/amazon-kinesis-client/pull/679) -* Making ShardConsumerTest resilient to race conditions. - * [PR#668](https://github.com/awslabs/amazon-kinesis-client/pull/668) -* Updating integration test naming. - * [PR#667](https://github.com/awslabs/amazon-kinesis-client/pull/667) +### 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) ### 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 ed84c3b7..d8c45451 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.9-SNAPSHOT + 2.2.9 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 6eb2d0fb..0bddbda1 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.9-SNAPSHOT + 2.2.9 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 ca0e4edf..0d7b22de 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.9-SNAPSHOT"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.9"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index dadac41f..c485e746 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.2.9-SNAPSHOT + 2.2.9 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis.