Skip to content

Commit 02c2036

Browse files
cobradsCory-Bradshaw
authored andcommitted
Preparing for Release 1.13.2
1 parent a7079a8 commit 02c2036

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## Latest Release (1.13.2 Janurary 13, 2020)
3+
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
4+
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
5+
26
## Release 1.13.1 (December 31, 2019)
37
[Milestone#44](https://github.com/awslabs/amazon-kinesis-client/milestone/44)
48
* Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request.

README.md

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

3232
## Release Notes
3333

34-
## Latest Release (1.13.1 December 30, 2019)
35-
[Milestone#44](https://github.com/awslabs/amazon-kinesis-client/milestone/44)
34+
#### Latest Release (1.13.2 Janurary 13, 2020)
35+
* Adding backward compatible constructors that use the default DDB Billing Mode (#673)
36+
* [PR #673](https://github.com/awslabs/amazon-kinesis-client/pull/673)
37+
38+
#### Release (1.13.1 December 30, 2019)
3639
* Adding BillingMode Support to KCL 1.x. This enables the customer to specify if they want provisioned capacity for DDB, or pay per request.
3740
* [PR #656](https://github.com/awslabs/amazon-kinesis-client/pull/656)
3841
* Ensure ShardSyncTask invocation from ShardSyncTaskManager for pending ShardEnd events.
3942
* [PR #659](https://github.com/awslabs/amazon-kinesis-client/pull/659)
4043
* Fix the LeaseManagementIntegrationTest failure.
4144
* [PR #670](https://github.com/awslabs/amazon-kinesis-client/pull/670)
4245

43-
## Release (1.13.0 November 5, 2019)
44-
[Milestone#42](https://github.com/awslabs/amazon-kinesis-client/milestone/42)
46+
#### Release (1.13.0 November 5, 2019)
4547
* Handling completed and blocked tasks better during graceful shutdown
4648
* [PR #640](https://github.com/awslabs/amazon-kinesis-client/pull/640)
4749

48-
## Release 1.12.0 (October 17, 2019)
49-
[Milestone#41](https://github.com/awslabs/amazon-kinesis-client/milestone/41)
50+
#### Release 1.12.0 (October 17, 2019)
5051
* Adding logging around shard end codepaths
5152
* [PR #585](https://github.com/awslabs/amazon-kinesis-client/pull/585)
5253
* Updating checkpointing failure message to refer to javadocs
@@ -58,7 +59,7 @@ To make it easier for developers to write record processors in other languages,
5859
* Updating AWS SDK to 1.11.655
5960
* [PR #626](https://github.com/awslabs/amazon-kinesis-client/pull/626)
6061

61-
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
62+
###### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
6263

6364
[kinesis]: http://aws.amazon.com/kinesis
6465
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169

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.1</version>
9+
<version>1.13.2</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.1";
132+
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.13.2";
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)