diff --git a/CHANGELOG.md b/CHANGELOG.md
index cdf6f31e..f0c05fb8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
# Changelog
+### Latest Release 2.3.3 (December 23, 2020)
+[Milestone#55](https://github.com/awslabs/amazon-kinesis-client/milestone/55)
+* Fixing bug in PrefetchRecordsPublisher which was causing retry storms if initial request fails.
+* Fixing bug where idleTimeBetweenReadsInMillis property was ignored in PollingConfig.
-### Latest Release 2.3.2 (November 19, 2020)
+### 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.
* Updating AWS SDK version to 2.15.31
diff --git a/README.md b/README.md
index cb3d1c96..ebdec9d1 100644
--- a/README.md
+++ b/README.md
@@ -47,7 +47,7 @@ The recommended way to use the KCL for Java is to consume it from Maven.
software.amazon.kinesis
amazon-kinesis-client
- 2.3.2
+ 2.3.3
```
@@ -63,7 +63,12 @@ The recommended way to use the KCL for Java is to consume it from Maven.
## Release Notes
-### Latest Release 2.3.2 (November 19, 2020)
+### Latest Release 2.3.3 (December 23, 2020)
+[Milestone#55](https://github.com/awslabs/amazon-kinesis-client/milestone/55)
+* Fixing bug in PrefetchRecordsPublisher which was causing retry storms if initial request fails.
+* Fixing bug where idleTimeBetweenReadsInMillis property was ignored in PollingConfig.
+
+### 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.
* Updating AWS SDK version to 2.15.31
diff --git a/amazon-kinesis-client-multilang/pom.xml b/amazon-kinesis-client-multilang/pom.xml
index 5c632372..eb1fd554 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.2
+ 2.3.3
4.0.0
diff --git a/amazon-kinesis-client/pom.xml b/amazon-kinesis-client/pom.xml
index c7229a6a..598b0faf 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.2
+ 2.3.3
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 829ce035..b0e6800c 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.2";
+ public static final String KINESIS_CLIENT_LIB_USER_AGENT_VERSION = "2.3.3";
/**
* Client used to make calls to Kinesis for records retrieval
diff --git a/pom.xml b/pom.xml
index 44556aa2..23d2d16c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
amazon-kinesis-client-pom
pom
Amazon Kinesis Client Library
- 2.3.2
+ 2.3.3
The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
from Amazon Kinesis.