Skip to content

Commit 74fc856

Browse files
authored
Merge pull request #698 from ychunxue/v1.x
Prepare for KCL 1.13.3 release
2 parents e9e64f8 + 3cd1bdc commit 74fc856

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
2-
## Latest Release (1.13.2 Janurary 13, 2020)
2+
## Latest Release (1.13.3 March 2, 2020)
3+
[Milestone#49] (https://github.com/awslabs/amazon-kinesis-client/milestone/49)
4+
* Refactoring shard closure verification performed by ShutdownTask.
5+
* [PR #684] (https://github.com/awslabs/amazon-kinesis-client/pull/684)
6+
* Fixing the bug in ShardSyncTaskManager to resolve the issue of new shards not being processed after resharding.
7+
* [PR #694] (https://github.com/awslabs/amazon-kinesis-client/pull/694)
8+
9+
## Release 1.13.2 (Janurary 13, 2020)
310
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
411
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
512

README.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ To make it easier for developers to write record processors in other languages,
3131

3232
## Release Notes
3333

34-
#### Latest Release (1.13.2 Janurary 13, 2020)
34+
#### Latest Release (1.13.3 March 2, 2020)
35+
* Refactoring shard closure verification performed by ShutdownTask.
36+
* [PR #684] (https://github.com/awslabs/amazon-kinesis-client/pull/684)
37+
* Fixing the bug in ShardSyncTaskManager to resolve the issue of new shards not being processed after resharding.
38+
* [PR #694] (https://github.com/awslabs/amazon-kinesis-client/pull/694)
39+
40+
#### Release (1.13.2 Janurary 13, 2020)
3541
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
3642
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
3743

@@ -47,17 +53,6 @@ To make it easier for developers to write record processors in other languages,
4753
* Handling completed and blocked tasks better during graceful shutdown
4854
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
4955

50-
#### Release 1.12.0 (October 17, 2019)
51-
* Adding logging around shard end codepaths
52-
* [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585)
53-
* Updating checkpointing failure message to refer to javadocs
54-
* [PR #590](https://github.com/awslabs/amazon-kinesis-client/pull/590)
55-
* Updating Sonatype to dedicated AWS endpoint.
56-
* [PR #618](https://github.com/awslabs/amazon-kinesis-client/pull/618)
57-
* Introducing a validation step to verify if ShardEnd is reached, to prevent shard consumer stuck scenarios in the event of malformed response from service.
58-
* [PR #623](https://github.com/awslabs/amazon-kinesis-client/pull/623)
59-
* Updating AWS SDK to 1.11.655
60-
* [PR #626](https://github.com/awslabs/amazon-kinesis-client/pull/626)
6156

6257
###### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
6358

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>amazon-kinesis-client</artifactId>
77
<packaging>jar</packaging>
88
<name>Amazon Kinesis Client Library for Java</name>
9-
<version>1.13.3-SNAPSHOT</version>
9+
<version>1.13.3</version>
1010
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
1111
from Amazon Kinesis.
1212
</description>

src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public class KinesisClientLibConfiguration {
129129
/**
130130
* User agent set when Amazon Kinesis Client Library makes AWS requests.
131131
*/
132-
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.2";
132+
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.3";
133133

134134
/**
135135
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls

0 commit comments

Comments
 (0)