Skip to content

Commit 3aeaa0c

Browse files
Yu Zengzengyu714
authored andcommitted
Preparation for v0.14.13
1 parent eb8405c commit 3aeaa0c

File tree

6 files changed

+15
-4
lines changed

6 files changed

+15
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
## Changelog
2+
3+
### 0.14.13
4+
* [#440](https://github.com/awslabs/amazon-kinesis-producer/pull/440)
5+
* Upgrade the dependencies used in bootstrap + Java dependencies
6+
* Correct the log level discrepancy for the warnings
7+
28
### 0.14.12
39
* [#425](https://github.com/awslabs/amazon-kinesis-producer/pull/425) Fix build issues in CI
410
* [#424](https://github.com/awslabs/amazon-kinesis-producer/pull/424) Fix build issues in CI

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ If you have further questions [please open a GitHub Issue](https://github.com/aw
5757
This is a restatement of the [notice published](https://docs.aws.amazon.com/streams/latest/dev/kinesis-kpl-upgrades.html) in the [Amazon Kinesis Data Streams Developer Guide][kinesis-developer-guide]
5858

5959
## Release Notes
60+
### 0.14.13
61+
* [#440](https://github.com/awslabs/amazon-kinesis-producer/pull/440)
62+
* Upgrade the dependencies used in bootstrap + Java dependencies
63+
* Correct the log level discrepancy for the warnings
64+
6065
### 0.14.12
6166
* [#425](https://github.com/awslabs/amazon-kinesis-producer/pull/425) Fix build issues in CI
6267
* [#424](https://github.com/awslabs/amazon-kinesis-producer/pull/424) Fix build issues in CI

aws/kinesis/core/kinesis_producer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ struct EndpointConfiguration {
3838
kinesis_endpoint_(kinesis_endpoint), cloudwatch_endpoint_(cloudwatch_endpoint) {}
3939
};
4040

41-
const constexpr char* kVersion = "0.14.12N";
41+
const constexpr char* kVersion = "0.14.13N";
4242
const std::unordered_map< std::string, EndpointConfiguration > kRegionEndpointOverride = {
4343
{ "cn-north-1", { "kinesis.cn-north-1.amazonaws.com.cn", "monitoring.cn-north-1.amazonaws.com.cn" } },
4444
{ "cn-northwest-1", { "kinesis.cn-northwest-1.amazonaws.com.cn", "monitoring.cn-northwest-1.amazonaws.com.cn" } }

java/amazon-kinesis-producer-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>com.amazonaws</groupId>
5858
<artifactId>amazon-kinesis-producer</artifactId>
59-
<version>0.14.13-SNAPSHOT</version>
59+
<version>0.14.13</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.slf4j</groupId>

java/amazon-kinesis-producer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.amazonaws</groupId>
55
<artifactId>amazon-kinesis-producer</artifactId>
6-
<version>0.14.13-SNAPSHOT</version>
6+
<version>0.14.13</version>
77
<name>Amazon Kinesis Producer Library</name>
88

99
<scm>

java/amazon-kinesis-producer/src/main/java/com/amazonaws/services/kinesis/producer/GlueSchemaRegistrySerializerInstance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public final class GlueSchemaRegistrySerializerInstance {
1212

1313
private volatile GlueSchemaRegistrySerializer instance = null;
14-
private static final String USER_AGENT_APP_NAME = "kpl-0.14.12";
14+
private static final String USER_AGENT_APP_NAME = "kpl-0.14.13";
1515

1616
/**
1717
* Instantiate GlueSchemaRegistrySerializer using the KinesisProducerConfiguration.

0 commit comments

Comments
 (0)