Skip to content

Commit

Permalink
chore(release): 6.0.1 [skip ci]
Browse files Browse the repository at this point in the history
## [6.0.1](v6.0.0...v6.0.1) (2024-08-20)

### Bug Fixes

* fix supported Java versions in the readme ([f889f03](f889f03))
  • Loading branch information
semantic-release-bot committed Aug 20, 2024
1 parent 12480c7 commit b75b501
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 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.1](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v6.0.0...v6.0.1) (2024-08-20)


### Bug Fixes

* fix supported Java versions in the readme ([f889f03](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/f889f03918f26df3e83767a70f00bf147869875e))

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


Expand Down
6 changes: 3 additions & 3 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.0</version>
<version>v6.0.1</version>
</dependency>
```

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

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

Then manually install the following JARs:

- `target/fingerprint-pro-server-api-sdk-6.0.0.jar`
- `target/fingerprint-pro-server-api-sdk-6.0.1.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.0
projectVersion = 6.0.1
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.0'
VERSION='6.0.1'

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.0";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/6.0.1";
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.0/java");
setUserAgent("OpenAPI-Generator/6.0.1/java");

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

0 comments on commit b75b501

Please sign in to comment.