Preparing for v2.2.10 release.

This commit is contained in:
jushkem 2020-03-26 17:15:02 -04:00
parent 7c7491c30d
commit f2d0a9f9dd
6 changed files with 21 additions and 10 deletions

View file

@ -1,5 +1,14 @@
# Changelog
### Release 2.2.10 (March 26, 2020)
[Milestone#48](https://github.com/awslabs/amazon-kinesis-client/milestone/48)
* Fixing 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)
* Adjusting HTTP2 initial window size to be 2MB.
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
### 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.

View file

@ -63,12 +63,14 @@ 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 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)
* Adjusting HTTP2 initial window size to be 2MB.
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.

View file

@ -21,7 +21,7 @@
<parent>
<artifactId>amazon-kinesis-client-pom</artifactId>
<groupId>software.amazon.kinesis</groupId>
<version>2.2.10-SNAPSHOT</version>
<version>2.2.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

View file

@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.kinesis</groupId>
<artifactId>amazon-kinesis-client-pom</artifactId>
<version>2.2.10-SNAPSHOT</version>
<version>2.2.10</version>
</parent>
<artifactId>amazon-kinesis-client</artifactId>

View file

@ -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

View file

@ -22,7 +22,7 @@
<artifactId>amazon-kinesis-client-pom</artifactId>
<packaging>pom</packaging>
<name>Amazon Kinesis Client Library</name>
<version>2.2.10-SNAPSHOT</version>
<version>2.2.10</version>
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis.
</description>