Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.

## [ [6.5.0](https://github.com/infobip/infobip-api-java-client/releases/tag/6.5.0) ] - 2026-05-15

### Added
* Support for [Infobip Number Lookup API](https://www.infobip.com/docs/api/connectivity/number-lookup).

## [ [6.4.1](https://github.com/infobip/infobip-api-java-client/releases/tag/6.4.1) ] - 2026-05-07

### Changed
Expand Down Expand Up @@ -871,4 +876,4 @@ In this release the infobip-api-java-client library is updated and modernized. I
### Removed
- Support for [Infobip Omni API](https://www.infobip.com/docs/api#channels/omni-failover) (to be included back in one of the next releases)

[readme]: README.md
[readme]: README.md
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ The current version of this library includes this subset of Infobip products:
* [RCS](https://www.infobip.com/docs/api/channels/rcs)
* [Numbers](https://www.infobip.com/docs/api/platform/numbers)
* [Resources](https://www.infobip.com/docs/api/platform/resources)
* [Number Lookup](https://www.infobip.com/docs/api/connectivity/number-lookup)

## General Info
For `infobip-api-java-client` versioning we use [Semantic Versioning][semver] scheme.
Expand All @@ -52,7 +53,7 @@ Simply add the following in your project's POM file under `dependencies` tag:
<dependency>
<groupId>com.infobip</groupId>
<artifactId>infobip-api-java-client</artifactId>
<version>6.4.1</version>
<version>6.5.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.infobip</groupId>
<artifactId>infobip-api-java-client</artifactId>
<version>6.4.1</version>
<version>6.5.0</version>
<packaging>jar</packaging>

<name>infobip-api-java-client</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/infobip/RequestFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*/
final class RequestFactory {

private static final String USER_AGENT_HEADER_VALUE = "infobip-api-client-java/6.4.1";
private static final String USER_AGENT_HEADER_VALUE = "infobip-api-client-java/6.5.0";

private final ApiKey apiKey;
private final BaseUrl baseUrl;
Expand Down
Loading
Loading