Skip to content

Commit 9db3a11

Browse files
authored
Prepare for 2.2.11 release (#723)
1 parent 1d5099c commit 9db3a11

File tree

6 files changed

+22
-11
lines changed

6 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
### Release 2.2.11 (May 28, 2020)
4+
[Milestone#51](https://github.com/awslabs/amazon-kinesis-client/milestone/51)
5+
* Adjusting HTTP2 initial window size to 512 KB
6+
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
7+
* Updating protobuf-java to version 3.11.4
8+
* [PR#718](https://github.com/awslabs/amazon-kinesis-client/pull/718)
9+
* Updating the AWS Java SDK to version 2.13.25
10+
* [PR#722](https://github.com/awslabs/amazon-kinesis-client/pull/722)
11+
312
### Release 2.2.10 (March 26, 2020)
413
[Milestone#48](https://github.com/awslabs/amazon-kinesis-client/milestone/48)
514
* Fixing a bug in DynamoDB billing mode support for special regions.

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
4747
<dependency>
4848
<groupId>software.amazon.kinesis</groupId>
4949
<artifactId>amazon-kinesis-client</artifactId>
50-
<version>2.2.9</version>
50+
<version>2.2.11</version>
5151
</dependency>
5252
```
5353

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

6464
## Release Notes
6565

66-
### Release 2.2.10 (March 26, 2020)
67-
[Milestone#48](https://github.com/awslabs/amazon-kinesis-client/milestone/48)
68-
* Fixing a bug in DynamoDB billing mode support for special regions.
69-
* [PR#703](https://github.com/awslabs/amazon-kinesis-client/pull/703)
70-
* Adding request id logging to ShardConsumerSubscriber.
71-
* [PR#705](https://github.com/awslabs/amazon-kinesis-client/pull/705)
66+
### Release 2.2.11 (May 28, 2020)
67+
[Milestone#51](https://github.com/awslabs/amazon-kinesis-client/milestone/51)
68+
* Adjusting HTTP2 initial window size to 512 KB
69+
* [PR#706](https://github.com/awslabs/amazon-kinesis-client/pull/706)
70+
* Updating protobuf-java to version 3.11.4
71+
* [PR#718](https://github.com/awslabs/amazon-kinesis-client/pull/718)
72+
* Updating the AWS Java SDK to version 2.13.25
73+
* [PR#722](https://github.com/awslabs/amazon-kinesis-client/pull/722)
7274

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

amazon-kinesis-client-multilang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>amazon-kinesis-client-pom</artifactId>
2323
<groupId>software.amazon.kinesis</groupId>
24-
<version>2.2.11-SNAPSHOT</version>
24+
<version>2.2.11</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

amazon-kinesis-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>software.amazon.kinesis</groupId>
2424
<artifactId>amazon-kinesis-client-pom</artifactId>
25-
<version>2.2.11-SNAPSHOT</version>
25+
<version>2.2.11</version>
2626
</parent>
2727

2828
<artifactId>amazon-kinesis-client</artifactId>

amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class RetrievalConfig {
3434
*/
3535
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
3636

37-
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.11-SNAPSHOT";
37+
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.11";
3838

3939
/**
4040
* Client used to make calls to Kinesis for records retrieval

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<artifactId>amazon-kinesis-client-pom</artifactId>
2323
<packaging>pom</packaging>
2424
<name>Amazon Kinesis Client Library</name>
25-
<version>2.2.11-SNAPSHOT</version>
25+
<version>2.2.11</version>
2626
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
2727
from Amazon Kinesis.
2828
</description>

0 commit comments

Comments
 (0)