Prepare for v2.2.1 (#561)
* Prepare for v2.2.1 * Minor messaging fixes * Update CHANGELOG.md * Update README.md * Update CHANGELOG.md * Update README.md * Update CHANGELOG.md * Update README.md
This commit is contained in:
parent
fa72cf1517
commit
7d8b281d24
6 changed files with 16 additions and 12 deletions
|
|
@ -1,4 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
### Release 2.2.1 (July 1, 2019)
|
||||||
|
[Milestone#32](https://github.com/awslabs/amazon-kinesis-client/milestone/32)
|
||||||
|
* Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
|
||||||
|
* Add logging of failures from RxJava layer.
|
||||||
|
* [PR#559](https://github.com/awslabs/amazon-kinesis-client/pull/559)
|
||||||
|
|
||||||
### Release 2.2.0 (April 8, 2019)
|
### Release 2.2.0 (April 8, 2019)
|
||||||
[Milestone#31](https://github.com/awslabs/amazon-kinesis-client/milestone/31)
|
[Milestone#31](https://github.com/awslabs/amazon-kinesis-client/milestone/31)
|
||||||
* Updated License to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
* Updated License to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
|
|
|
||||||
14
README.md
14
README.md
|
|
@ -44,7 +44,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<version>2.2.0</version>
|
<version>2.2.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
@ -60,13 +60,11 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
### Latest Release (2.2.0 - April 8, 2019)
|
### Latest Release (2.2.1 - July 1, 2019)
|
||||||
[Milestone#31](https://github.com/awslabs/amazon-kinesis-client/milestone/31)
|
[Milestone#32](https://github.com/awslabs/amazon-kinesis-client/milestone/32)
|
||||||
* Updated License to [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
* Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
|
||||||
* [PR#523](https://github.com/awslabs/amazon-kinesis-client/pull/523)
|
* Add logging of failures from RxJava layer.
|
||||||
* Introducing configuration for suppressing logs from ReadTimeoutExceptions caused while calling SubscribeToShard.
|
* [PR#559](https://github.com/awslabs/amazon-kinesis-client/pull/559)
|
||||||
Suppression can be configured by setting `LifecycleConfig#readTimeoutsToIgnoreBeforeWarning(Count)`.
|
|
||||||
* [PR#528](https://github.com/awslabs/amazon-kinesis-client/issues/528)
|
|
||||||
|
|
||||||
|
|
||||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<version>2.2.1-SNAPSHOT</version>
|
<version>2.2.1</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>software.amazon.kinesis</groupId>
|
<groupId>software.amazon.kinesis</groupId>
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<version>2.2.1-SNAPSHOT</version>
|
<version>2.2.1</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ public class RetrievalConfig {
|
||||||
*/
|
*/
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java";
|
||||||
|
|
||||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.1-SNAPSHOT";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.2.1";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Client used to make calls to Kinesis for records retrieval
|
* Client used to make calls to Kinesis for records retrieval
|
||||||
|
|
|
||||||
2
pom.xml
2
pom.xml
|
|
@ -22,7 +22,7 @@
|
||||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<name>Amazon Kinesis Client Library</name>
|
<name>Amazon Kinesis Client Library</name>
|
||||||
<version>2.2.1-SNAPSHOT</version>
|
<version>2.2.1</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue