Preparation for v1.11.2 (#594)
This commit is contained in:
parent
ba984fe279
commit
b537403d81
4 changed files with 13 additions and 3 deletions
|
|
@ -1,4 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
## Release 1.11.2 (August 15, 2019)
|
||||||
|
[Milestone#35](https://github.com/awslabs/amazon-kinesis-client/milestone/35)
|
||||||
|
* Added support for metrics emission in `PeriodicShardSyncer`.
|
||||||
|
* [PR #592](https://github.com/awslabs/amazon-kinesis-client/pull/592)
|
||||||
|
|
||||||
## Release 1.11.1 (August 9, 2019)
|
## Release 1.11.1 (August 9, 2019)
|
||||||
[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34)
|
[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34)
|
||||||
* Updated the version of the AWS Java SDK to 1.11.603.
|
* Updated the version of the AWS Java SDK to 1.11.603.
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,12 @@ To make it easier for developers to write record processors in other languages,
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (1.11.1 - August 9, 2019)
|
## Latest Release (1.11.2 - August 15, 2019)
|
||||||
|
[Milestone#35](https://github.com/awslabs/amazon-kinesis-client/milestone/35)
|
||||||
|
* Added support for metrics emission in `PeriodicShardSyncer`.
|
||||||
|
* [PR #592](https://github.com/awslabs/amazon-kinesis-client/pull/592)
|
||||||
|
|
||||||
|
### Release 1.11.1 (August 9, 2019)
|
||||||
[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34)
|
[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34)
|
||||||
* Updated the version of the AWS Java SDK to 1.11.603.
|
* Updated the version of the AWS Java SDK to 1.11.603.
|
||||||
* [PR #587](https://github.com/awslabs/amazon-kinesis-client/pull/587)
|
* [PR #587](https://github.com/awslabs/amazon-kinesis-client/pull/587)
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -6,7 +6,7 @@
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Amazon Kinesis Client Library for Java</name>
|
<name>Amazon Kinesis Client Library for Java</name>
|
||||||
<version>1.11.2-SNAPSHOT</version>
|
<version>1.11.2</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>
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@ public class KinesisClientLibConfiguration {
|
||||||
/**
|
/**
|
||||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
* 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.11.2-SNAPSHOT";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.11.2";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue