Skip to content

Commit

Permalink
chore(release): 5.1.0 [skip ci]
Browse files Browse the repository at this point in the history
## [5.1.0](v5.0.0...v5.1.0) (2024-03-27)

### Features

* support java versions 17 and 21 ([6398cfc](6398cfc))
  • Loading branch information
semantic-release-bot committed Mar 27, 2024
1 parent 19496b5 commit c501661
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [5.1.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v5.0.0...v5.1.0) (2024-03-27)


### Features

* support java versions 17 and 21 ([6398cfc](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/6398cfc001cd59a188f867094fbaadf78e0881ce))

## [5.0.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v4.0.0...v5.0.0) (2024-03-04)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/release.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/release.yml/badge.svg" alt="CI badge" /></a>
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/test.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/test.yml/badge.svg" alt="CI badge" /></a>
<a href="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/functional.yml"><img src="https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/actions/workflows/functional.yml/badge.svg" alt="CI badge" /></a>
<a href="https://opensource.org/licenses/MIT" style="display: inline-block"><img src="https://img.shields.io/:license-mit-blue.svg?style=flat" alt="MIT License"/></a>
<a href="https://discord.gg/39EpE2neBg" style="display: inline-block"><img src="https://img.shields.io/discord/852099967190433792?style=logo&label=Discord&logo=Discord&logoColor=white" alt="Discord server"></a>
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/:license-mit-blue.svg?style=flat"/></a>
<a href="https://discord.gg/39EpE2neBg"><img src="https://img.shields.io/discord/852099967190433792?style=logo&label=Discord&logo=Discord&logoColor=white" alt="Discord server"></a>
</p>

# Fingerprint Pro Server API Java SDK
Expand Down Expand Up @@ -56,7 +56,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.github.fingerprintjs</groupId>
<artifactId>fingerprint-pro-server-api-java-sdk</artifactId>
<version>v5.0.0</version>
<version>v5.1.0</version>
</dependency>
```

Expand All @@ -70,7 +70,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v5.0.0"
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v5.1.0"
}
```

Expand All @@ -84,7 +84,7 @@ At first generate the JAR by executing:

Then manually install the following JARs:

- `target/fingerprint-pro-server-api-sdk-5.0.0.jar`
- `target/fingerprint-pro-server-api-sdk-5.1.0.jar`

## Usage

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'eclipse'
apply plugin: 'com.diffplug.spotless'

group = 'com.fingerprint'
version = '5.0.0'
version = '5.1.0'

buildscript {
repositories {
Expand Down Expand Up @@ -37,7 +37,7 @@ publishing {
artifact jar
groupId 'com.fingerprint'
artifactId 'fingerprint-pro-server-api-sdk'
version '5.0.0'
version '5.1.0'
}
}
}
Expand All @@ -50,7 +50,7 @@ tasks.register('execute', JavaExec) {
ext {
swagger_annotations_version = "1.6.14"
jackson_version = "2.17.0"
jackson_databind_version = "2.17.0"
jackson_databind_version = "2.17.0"
jackson_databind_nullable_version = "0.2.6"
jakarta_annotation_version = "1.3.5"
jersey_version = "2.42"
Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
artifactVersion: 5.0.0
artifactVersion: 5.1.0
apiPackage: com.fingerprint.api
modelPackage: com.fingerprint.model
invokerPackage: com.fingerprint.sdk
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION='5.0.0'
VERSION='5.1.0'

while getopts "v:" arg; do
case $arg in
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fingerprint/api/FingerprintApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class FingerprintApi {
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/5.0.0";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/5.1.0";
private ApiClient apiClient;

public FingerprintApi() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fingerprint/sdk/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public ApiClient(Map<String, Authentication> authMap) {
this.dateFormat = new RFC3339DateFormat();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/5.0.0/java");
setUserAgent("OpenAPI-Generator/5.1.0/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down

0 comments on commit c501661

Please sign in to comment.