Skip to content

Commit 323c020

Browse files
Yu Zengzengyu714
Yu Zeng
authored andcommitted
Prepare for KPL Release 0.15.5
1 parent 5f75c45 commit 323c020

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## Changelog
2+
### 0.15.5
3+
* [#482](https://github.com/awslabs/amazon-kinesis-producer/pull/482) Remove the stream arn parameter when the next token is present
24

35
### 0.15.4
46

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ If you have further questions [please open a GitHub Issue](https://github.com/aw
6060
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]
6161

6262
## Release Notes
63+
### 0.15.5
64+
* [#482](https://github.com/awslabs/amazon-kinesis-producer/pull/482) Remove the stream arn parameter when the next token is present
65+
6366
### 0.15.4
6467

6568
### 0.15.3

aws/kinesis/core/kinesis_producer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ struct EndpointConfiguration {
4545
sts_endpoint_(sts_endpoint) {}
4646
};
4747

48-
const constexpr char* kVersion = "0.14.13N";
48+
const constexpr char* kVersion = "0.15.5N";
4949
const std::unordered_map< std::string, EndpointConfiguration > kRegionEndpointOverride = {
5050
{ "cn-north-1", { "kinesis.cn-north-1.amazonaws.com.cn", "monitoring.cn-north-1.amazonaws.com.cn" } },
5151
{ "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.15.4</version>
59+
<version>0.15.5</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.15.4</version>
6+
<version>0.15.5</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.15.4";
14+
private static final String USER_AGENT_APP_NAME = "kpl-0.15.5";
1515

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

0 commit comments

Comments
 (0)