Preparing for KCL v2.2.8 release (#680)
This commit is contained in:
parent
66f5204d84
commit
9abb56a634
6 changed files with 21 additions and 11 deletions
|
|
@ -1,5 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### 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)
|
||||||
|
|
||||||
### Release 2.2.7 (December 2, 2019)
|
### Release 2.2.7 (December 2, 2019)
|
||||||
[Milestone#45](https://github.com/awslabs/amazon-kinesis-client/milestone/45)
|
[Milestone#45](https://github.com/awslabs/amazon-kinesis-client/milestone/45)
|
||||||
* Updating the AWS SDK version to 2.10.25
|
* Updating the AWS SDK version to 2.10.25
|
||||||
|
|
|
||||||
15
README.md
15
README.md
|
|
@ -63,13 +63,14 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (2.2.7 - December 2, 2019)
|
### Latest Release (2.2.8 - January 28 2020)
|
||||||
[Milestone#45](https://github.com/awslabs/amazon-kinesis-client/milestone/45)
|
[Milestone#46](https://github.com/awslabs/amazon-kinesis-client/milestone/45)
|
||||||
* Updating the AWS SDK version to 2.10.25
|
* Updating the AWS SDK version to 2.10.56.
|
||||||
* [PR#657](https://github.com/awslabs/amazon-kinesis-client/pull/657)
|
* [PR#679](https://github.com/awslabs/amazon-kinesis-client/pull/679)
|
||||||
* Adding a configurable DynamoDB billing mode
|
* Making ShardConsumerTest resilient to race conditions.
|
||||||
* [PR#582](https://github.com/awslabs/amazon-kinesis-client/pull/582)
|
* [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)
|
||||||
|
|
||||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<version>2.2.8-SNAPSHOT</version>
|
<version>2.2.8</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<version>2.2.8-SNAPSHOT</version>
|
<version>2.2.8</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -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 = "amazon-kinesis-client-library-java";
|
||||||
|
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.8-SNAPSHOT";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.8";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client used to make calls to Kinesis for records retrieval
|
* Client used to make calls to Kinesis for records retrieval
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -22,7 +22,7 @@
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Amazon Kinesis Client Library</name>
|
<name>Amazon Kinesis Client Library</name>
|
||||||
<version>2.2.8-SNAPSHOT</version>
|
<version>2.2.8</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue