Skip to content

Commit

Permalink
chore(release): 6.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [6.0.2](v6.0.1...v6.0.2) (2024-09-09)

### Bug Fixes

* for `Sealed` use same `ObjectMapper` as for `FingerprintApi` ([7343655](7343655))
  • Loading branch information
semantic-release-bot committed Sep 9, 2024
1 parent 722c743 commit af2c49d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [6.0.2](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v6.0.1...v6.0.2) (2024-09-09)


### Bug Fixes

* for `Sealed` use same `ObjectMapper` as for `FingerprintApi` ([7343655](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/734365587dbc52a504d17c051ef03cd85f6c2d34))

## [6.0.1](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v6.0.0...v6.0.1) (2024-08-20)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.github.fingerprintjs</groupId>
<artifactId>fingerprint-pro-server-api-java-sdk</artifactId>
<version>v6.0.1</version>
<version>v6.0.2</version>
</dependency>
```

Expand All @@ -70,7 +70,7 @@ repositories {
}
dependencies {
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.0.1"
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.0.2"
}
```

Expand All @@ -85,7 +85,7 @@ repositories {
}

dependencies {
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.0.1")
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.0.2")
}
```

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

Then manually install the following JARs:

- `target/fingerprint-pro-server-api-sdk-6.0.1.jar`
- `target/fingerprint-pro-server-api-sdk-6.0.2.jar`

## Getting Started

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion = 6.0.1
projectVersion = 6.0.2
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='6.0.1'
VERSION='6.0.2'

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

@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class FingerprintApi {
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/6.0.1";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/6.0.2";
private ApiClient apiClient;

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

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/6.0.1/java");
setUserAgent("OpenAPI-Generator/6.0.2/java");

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

0 comments on commit af2c49d

Please sign in to comment.