diff --git a/CHANGELOG.md b/CHANGELOG.md index dbd7821d..f9631dbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # Changelog +## Release 1.11.1 (August 9, 2019) +[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34) +* Updated the version of the AWS Java SDK to 1.11.603. + * [PR #587](https://github.com/awslabs/amazon-kinesis-client/pull/587) +* Added logging to `KinesisDataFetcher` when reaching the end of a shard due to a null next iterator. + * [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585) + ## Release 1.11.0 (August 7, 2019) [Milestone#33](https://github.com/awslabs/amazon-kinesis-client/milestone/33) * Improved exception handling and logging in `KinesisClientLibLeaseCoordinator` to avoid `NullPointerExceptions` when no leases are found. diff --git a/README.md b/README.md index 0a968a40..72cce718 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,14 @@ To make it easier for developers to write record processors in other languages, ## Release Notes -### Latest Release (1.11.0 - August 7, 2019) +### Latest Release (1.11.1 - August 9, 2019) +[Milestone#34](https://github.com/awslabs/amazon-kinesis-client/milestone/34) +* Updated the version of the AWS Java SDK to 1.11.603. + * [PR #587](https://github.com/awslabs/amazon-kinesis-client/pull/587) +* Added logging to `KinesisDataFetcher` when reaching the end of a shard due to a null next iterator. + * [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585) + +### Release 1.11.0 (August 7, 2019) [Milestone#33](https://github.com/awslabs/amazon-kinesis-client/milestone/33) * Improved exception handling and logging in `KinesisClientLibLeaseCoordinator` to avoid `NullPointerExceptions` when no leases are found. * [PR #558](https://github.com/awslabs/amazon-kinesis-client/pull/558) diff --git a/pom.xml b/pom.xml index 18432d1b..5cb40e4e 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ amazon-kinesis-client jar Amazon Kinesis Client Library for Java - 1.11.1-SNAPSHOT + 1.11.1 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. diff --git a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java index d40a1ac4..aaa106f4 100644 --- a/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java +++ b/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java @@ -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.11.1-SNAPSHOT"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.11.1"; /** * KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls