diff --git a/CHANGELOG.md b/CHANGELOG.md
index f591503..1eb95cd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,7 +5,7 @@ All notable changes to the library will be documented in this file.
The format of the file is based on [Keep a Changelog](http://keepachangelog.com/)
and this library adheres to [Semantic Versioning](http://semver.org/) as mentioned in [README.md][readme] file.
-## [Unreleased]
+## [ [4.3.2](https://github.com/infobip/infobip-api-java-client/releases/tag/4.3.2) ] - 2024-08-21
### Added
* Added mock tests to verify the correctness of request payloads and response handling.
diff --git a/README.md b/README.md
index 8e7530c..38d337c 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,7 @@ Simply add the following in your project's POM file under `dependencies` tag:
com.infobip
infobip-api-java-client
- 4.3.1
+ 4.3.2
```
diff --git a/pom.xml b/pom.xml
index 3ed6060..a2beae4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.infobip
infobip-api-java-client
- 4.3.1
+ 4.3.2
jar
infobip-api-java-client
diff --git a/src/main/java/com/infobip/RequestFactory.java b/src/main/java/com/infobip/RequestFactory.java
index 79e6a98..c8914f7 100644
--- a/src/main/java/com/infobip/RequestFactory.java
+++ b/src/main/java/com/infobip/RequestFactory.java
@@ -26,7 +26,7 @@
*/
final class RequestFactory {
- private static final String USER_AGENT_HEADER_VALUE = "infobip-api-client-java/4.3.1";
+ private static final String USER_AGENT_HEADER_VALUE = "infobip-api-client-java/4.3.2";
private final ApiKey apiKey;
private final BaseUrl baseUrl;
diff --git a/src/test/java/com/infobip/RequestFactoryTest.java b/src/test/java/com/infobip/RequestFactoryTest.java
index ba3bb46..22e5a55 100644
--- a/src/test/java/com/infobip/RequestFactoryTest.java
+++ b/src/test/java/com/infobip/RequestFactoryTest.java
@@ -38,7 +38,7 @@ class RequestFactoryTest {
private static final String GIVEN_API_KEY_VALUE = "apiKeyValue";
private static final ApiKey GIVEN_API_KEY = ApiKey.from(GIVEN_API_KEY_VALUE);
- private static final String EXPECTED_USER_AGENT_HEADER_VALUE = "infobip-api-client-java/4.3.1";
+ private static final String EXPECTED_USER_AGENT_HEADER_VALUE = "infobip-api-client-java/4.3.2";
private final OkHttpClient client = new OkHttpClient();
private final JSON json = new JSON();