Preparing for 2.2.9 release. (#688)
This commit is contained in:
parent
8aaf2aa11c
commit
cff709d044
6 changed files with 18 additions and 13 deletions
|
|
@ -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.
|
||||
|
|
|
|||
16
README.md
16
README.md
|
|
@ -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.4</version>
|
||||
<version>2.2.9</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -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]**.
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
<parent>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<version>2.2.9-SNAPSHOT</version>
|
||||
<version>2.2.9</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<parent>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<version>2.2.9-SNAPSHOT</version>
|
||||
<version>2.2.9</version>
|
||||
</parent>
|
||||
|
||||
<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_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
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -22,7 +22,7 @@
|
|||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Amazon Kinesis Client Library</name>
|
||||
<version>2.2.9-SNAPSHOT</version>
|
||||
<version>2.2.9</version>
|
||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||
from Amazon Kinesis.
|
||||
</description>
|
||||
|
|
|
|||
Loading…
Reference in a new issue