Skip to content

Commit

Permalink
Prepare for 2.2.11 release (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
micah-jaffe authored May 28, 2020
1 parent 1d5099c commit 9db3a11
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

### Release 2.2.11 (May 28, 2020)
[Milestone#51](https://github.com/awslabs/amazon-kinesis-client/milestone/51)
* Adjusting HTTP2 initial window size to 512 KB
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
* Updating protobuf-java to version 3.11.4
* [PR#718](https://github.com/awslabs/amazon-kinesis-client/pull/718)
* Updating the AWS Java SDK to version 2.13.25
* [PR#722](https://github.com/awslabs/amazon-kinesis-client/pull/722)

### 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.
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
<dependency>
<groupId>software.amazon.kinesis</groupId>
<artifactId>amazon-kinesis-client</artifactId>
<version>2.2.9</version>
<version>2.2.11</version>
</dependency>
```

Expand All @@ -63,12 +63,14 @@ The recommended way to use the KCL for Java is to consume it from Maven.

## Release Notes

### 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.11 (May 28, 2020)
[Milestone#51](https://github.com/awslabs/amazon-kinesis-client/milestone/51)
* Adjusting HTTP2 initial window size to 512 KB
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
* Updating protobuf-java to version 3.11.4
* [PR#718](https://github.com/awslabs/amazon-kinesis-client/pull/718)
* Updating the AWS Java SDK to version 2.13.25
* [PR#722](https://github.com/awslabs/amazon-kinesis-client/pull/722)

### For remaining release notes check **[CHANGELOG.md][changelog-md]**.

Expand Down
2 changes: 1 addition & 1 deletion amazon-kinesis-client-multilang/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>amazon-kinesis-client-pom</artifactId>
<groupId>software.amazon.kinesis</groupId>
<version>2.2.11-SNAPSHOT</version>
<version>2.2.11</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion amazon-kinesis-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>software.amazon.kinesis</groupId>
<artifactId>amazon-kinesis-client-pom</artifactId>
<version>2.2.11-SNAPSHOT</version>
<version>2.2.11</version>
</parent>

<artifactId>amazon-kinesis-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.11-SNAPSHOT";
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.11";

/**
* Client used to make calls to Kinesis for records retrieval
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<artifactId>amazon-kinesis-client-pom</artifactId>
<packaging>pom</packaging>
<name>Amazon Kinesis Client Library</name>
<version>2.2.11-SNAPSHOT</version>
<version>2.2.11</version>
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis.
</description>
Expand Down

0 comments on commit 9db3a11

Please sign in to comment.