Merge pull request #646 from ychunxue/v1.x
Prepare for KCL 1.13.0 release
This commit is contained in:
commit
7663673f3b
4 changed files with 13 additions and 3 deletions
|
|
@ -1,4 +1,9 @@
|
|||
# Changelog
|
||||
## Release 1.13.0 (November 5, 2019)
|
||||
[Milestone#42](https://github.com/awslabs/amazon-kinesis-client/milestone/42)
|
||||
* Handling completed and blocked tasks better during graceful shutdown
|
||||
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
|
||||
|
||||
## Release 1.12.0 (October 17, 2019)
|
||||
[Milestone#41](https://github.com/awslabs/amazon-kinesis-client/milestone/41)
|
||||
* Adding logging around shard end codepaths.
|
||||
|
|
|
|||
|
|
@ -31,7 +31,12 @@ To make it easier for developers to write record processors in other languages,
|
|||
|
||||
## Release Notes
|
||||
|
||||
## Latest Release (1.12.0 October 17, 2019)
|
||||
## Latest Release (1.13.0 November 5, 2019)
|
||||
[Milestone#42](https://github.com/awslabs/amazon-kinesis-client/milestone/42)
|
||||
* Handling completed and blocked tasks better during graceful shutdown
|
||||
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
|
||||
|
||||
## Release 1.12.0 (October 17, 2019)
|
||||
[Milestone#41](https://github.com/awslabs/amazon-kinesis-client/milestone/41)
|
||||
* Adding logging around shard end codepaths
|
||||
* [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585)
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
|||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<name>Amazon Kinesis Client Library for Java</name>
|
||||
<version>1.13.0-SNAPSHOT</version>
|
||||
<version>1.13.0</version>
|
||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||
from Amazon Kinesis.
|
||||
</description>
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ public class KinesisClientLibConfiguration {
|
|||
/**
|
||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
||||
*/
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.0-SNAPSHOT";
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.0";
|
||||
|
||||
/**
|
||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||
|
|
|
|||
Loading…
Reference in a new issue