diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba9c029..16e5ffe4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -### Latest Release 2.3.1 (October 20, 2020) +### Latest Release 2.3.2 (November 19, 2020) +[Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) +* Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. + +### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53) * Introducing support for processing multiple kinesis data streams with the same KCL 2.x for java consumer application * To build a consumer application that can process multiple streams at the same time, you must implement a new diff --git a/README.md b/README.md index 77523fb6..f6ff34e6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,11 @@ The recommended way to use the KCL for Java is to consume it from Maven. ## Release Notes -### Latest Release 2.3.1 (October 20, 2020) +### Latest Release 2.3.2 (November 19, 2020) +[Milestone#54](https://github.com/awslabs/amazon-kinesis-client/milestone/54) +* Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records. + +### Release 2.3.1 (October 20, 2020) [Milestone#53](https://github.com/awslabs/amazon-kinesis-client/milestone/53) * Introducing support for processing multiple kinesis data streams with the same KCL 2.x for java consumer application * To build a consumer application that can process multiple streams at the same time, you must implement a new diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml index fcb18e87..5c632372 100644 --- a/amazon-kinesis-client-multilang/pom.xml +++ b/amazon-kinesis-client-multilang/pom.xml @@ -21,7 +21,7 @@ amazon-kinesis-client-pom software.amazon.kinesis - 2.3.1 + 2.3.2 4.0.0 diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml index 1a3a20e1..c7229a6a 100644 --- a/amazon-kinesis-client/pom.xml +++ b/amazon-kinesis-client/pom.xml @@ -22,7 +22,7 @@ software.amazon.kinesis amazon-kinesis-client-pom - 2.3.1 + 2.3.2 amazon-kinesis-client diff --git a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java index c38f442d..829ce035 100644 --- a/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java +++ b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/retrieval/RetrievalConfig.java @@ -46,7 +46,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_VERSION = "2.3.1"; + public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.2"; /** * Client used to make calls to Kinesis for records retrieval diff --git a/pom.xml b/pom.xml index 4883d75e..44556aa2 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ amazon-kinesis-client-pom pom Amazon Kinesis Client Library - 2.3.1 + 2.3.2 The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data from Amazon Kinesis. @@ -33,7 +33,7 @@ - 2.14.0 + 2.15.31