Release 2.1.1 (#494)
* Updating the versions to 2.1.1 * Updating release notes and CHANGELOG * Updating the user agent version number
This commit is contained in:
parent
7f5bd73c0b
commit
5ff227c2c2
5 changed files with 22 additions and 13 deletions
|
|
@ -1,5 +1,14 @@
|
|||
# Changelog
|
||||
|
||||
### Release 2.1.1 (February 6, 2019)
|
||||
[Milestone#28](https://github.com/awslabs/amazon-kinesis-client/milestone/28)
|
||||
* Introducing `SHUT_DOWN_STARTED` state for the `WorkerStateChangeListener`.
|
||||
* [PR#457](https://github.com/awslabs/amazon-kinesis-client/pull/457)
|
||||
* Fixed a bug with `AWSSessionCredentials` using `AWSSecretID` instead of `AWSAccessID` and vice versa.
|
||||
* [PR#486](https://github.com/awslabs/amazon-kinesis-client/pull/486)
|
||||
* Upgrading SDK version to 2.4.0, which includes a fix for a possible deadlock when using Enhanced Fan-Out.
|
||||
* [PR#493](https://github.com/awslabs/amazon-kinesis-client/pull/493)
|
||||
|
||||
### Release 2.1.0 (January 14, 2019)
|
||||
[Milestone #27](https://github.com/awslabs/amazon-kinesis-client/milestone/27)
|
||||
* Introducing MultiLangDaemon support for Enhanced Fan-Out.
|
||||
|
|
|
|||
20
README.md
20
README.md
|
|
@ -44,7 +44,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
|||
<dependency>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
<version>2.0.4</version>
|
||||
<version>2.1.1</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -54,21 +54,21 @@ The recommended way to use the KCL for Java is to consume it from Maven.
|
|||
<dependency>
|
||||
<groupId>com.amazonaws</groupId>
|
||||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.3</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
||||
## Release Notes
|
||||
|
||||
### Latest Release (2.1.0 - January 14, 2019)
|
||||
[Milestone #27](https://github.com/awslabs/amazon-kinesis-client/milestone/27)
|
||||
* Introducing MultiLangDaemon support for Enhanced Fan-Out.
|
||||
* MultiLangDaemon now supports the following command line options.
|
||||
* `--properties-file`: Properties file that the KCL should use to set up the Scheduler.
|
||||
* `--log-configuration`: logback.xml that the KCL should use for logging.
|
||||
* Updated AWS SDK dependency to 2.2.0.
|
||||
* MultiLangDaemon now uses logback for logging.
|
||||
### Latest Release (2.1.1 - February 6, 2019)
|
||||
[Milestone#28](https://github.com/awslabs/amazon-kinesis-client/milestone/28)
|
||||
* Introducing `SHUT_DOWN_STARTED` state for the `WorkerStateChangeListener`.
|
||||
* [PR#457](https://github.com/awslabs/amazon-kinesis-client/pull/457)
|
||||
* Fixed a bug with `AWSSessionCredentials` using `AWSSecretID` instead of `AWSAccessID` and vice versa.
|
||||
* [PR#486](https://github.com/awslabs/amazon-kinesis-client/pull/486)
|
||||
* Upgrading SDK version to 2.4.0, which includes a fix for a possible deadlock when using Enhanced Fan-Out.
|
||||
* [PR#493](https://github.com/awslabs/amazon-kinesis-client/pull/493)
|
||||
|
||||
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
<parent>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<version>2.1.1-SNAPSHOT</version>
|
||||
<version>2.1.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
<parent>
|
||||
<groupId>software.amazon.kinesis</groupId>
|
||||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<version>2.1.1-SNAPSHOT</version>
|
||||
<version>2.1.1</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>amazon-kinesis-client</artifactId>
|
||||
|
|
|
|||
2
pom.xml
2
pom.xml
|
|
@ -20,7 +20,7 @@
|
|||
<artifactId>amazon-kinesis-client-pom</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<name>Amazon Kinesis Client Library</name>
|
||||
<version>2.1.1-SNAPSHOT</version>
|
||||
<version>2.1.1</version>
|
||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||
from Amazon Kinesis.
|
||||
</description>
|
||||
|
|
|
|||
Loading…
Reference in a new issue