Advance version to, and add release notes for 1.9.3 (#460)

Advanced the version for to 1.9.3
Added release notes for version 1.9.3
This commit is contained in:
Justin Pfifer 2018-10-30 12:49:37 -07:00 committed by GitHub
parent 7a4ecd1706
commit 54e6a48a48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 16 deletions

View file

@ -1,5 +1,13 @@
# Changelog # Changelog
## Release 1.9.3 (October 30, 2018)
* Upgraded Apache Commons Lang from 2.6 to 3.7.
* [Issue #370](https://github.com/awslabs/amazon-kinesis-client/issues/370)
* [PR #406](https://github.com/awslabs/amazon-kinesis-client/pull/406)
* Upgraded Google Guava from 10.0 to 26.0-jre.
* [Issue #416](https://github.com/awslabs/amazon-kinesis-client/issues/416)
* [PR #421](https://github.com/awslabs/amazon-kinesis-client/pull/421)
## Release 1.9.2 (September 4, 2018) ## Release 1.9.2 (September 4, 2018)
* Allow use of Immutable Clients * Allow use of Immutable Clients
* [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280) * [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280)

View file

@ -31,20 +31,13 @@ To make it easier for developers to write record processors in other languages,
## Release Notes ## Release Notes
### Latest Release (1.9.2 - September 4, 2018) ### Latest Release (1.9.3 - October 30, 2018)
* Allow use of Immutable Clients * Upgraded Apache Commons Lang from 2.6 to 3.7.
* [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280) * [Issue #370](https://github.com/awslabs/amazon-kinesis-client/issues/370)
* [PR #305](https://github.com/awslabs/amazon-kinesis-client/pull/305) * [PR #406](https://github.com/awslabs/amazon-kinesis-client/pull/406)
* Allow the use of `AT_TIMESTAMP` for MultiLang Daemon Clients. * Upgraded Google Guava from 10.0 to 26.0-jre.
* [Issue #341](https://github.com/awslabs/amazon-kinesis-client/issues/341) * [Issue #416](https://github.com/awslabs/amazon-kinesis-client/issues/416)
* [PR #342](https://github.com/awslabs/amazon-kinesis-client/pull/342) * [PR #421](https://github.com/awslabs/amazon-kinesis-client/pull/421)
* Update the cache for `KinesisProxy#getShard` on cache misses.
* [PR #344](https://github.com/awslabs/amazon-kinesis-client/pull/344)
* Changed release process to use a standard process.
* [PR #389](https://github.com/awslabs/amazon-kinesis-client/pull/389)
* Removed tests that expected a null region response for unknown regions.
* [PR #346](https://github.com/awslabs/amazon-kinesis-client/pull/346)
* Updated the version of the AWS Java SDK to 1.11.400
### For remaining release notes check **[CHANGELOG.md][changelog-md]**. ### For remaining release notes check **[CHANGELOG.md][changelog-md]**.

View file

@ -6,7 +6,7 @@
<artifactId>amazon-kinesis-client</artifactId> <artifactId>amazon-kinesis-client</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Amazon Kinesis Client Library for Java</name> <name>Amazon Kinesis Client Library for Java</name>
<version>1.9.3-SNAPSHOT</version> <version>1.9.3</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>

View file

@ -126,7 +126,7 @@ public class KinesisClientLibConfiguration {
/** /**
* User agent set when Amazon Kinesis Client Library makes AWS requests. * User agent set when Amazon Kinesis Client Library makes AWS requests.
*/ */
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.9.2"; public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.9.3";
/** /**
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls * KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls