Skip to content

Commit

Permalink
Merge pull request #80 from fingerprintjs/changeset-release/main
Browse files Browse the repository at this point in the history
Release [changeset]
  • Loading branch information
TheUnderScorer authored Oct 14, 2024
2 parents f3b2eec + b66b337 commit 3d14a98
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 23 deletions.
5 changes: 0 additions & 5 deletions .changeset/orange-taxis-fetch.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/pre.json

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Fingerprint Pro Server Java SDK

## 6.2.0

### Minor Changes

- **visitors**: Add the confidence field to the VPN Detection Smart Signal ([aec1770](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/aec1770034f91bef7fcd0775b99eb6baa74241de))

## 6.2.0-develop.0

### Minor Changes
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>vdev-6.2.0-0</version>
<version>v6.2.0</version>
</dependency>
```

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

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

dependencies {
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:vdev-6.2.0-0")
implementation("com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v6.2.0")
}
```

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-dev-6.2.0-0.jar`
- `target/fingerprint-pro-server-api-sdk-6.2.0.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 = dev-6.2.0-0
projectVersion = 6.2.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fingerprint-pro-server-api-java-sdk",
"version": "6.2.0-develop.0",
"version": "6.2.0",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.27.8",
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/dev-6.2.0-0";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/6.2.0";
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/dev-6.2.0-0/java");
setUserAgent("OpenAPI-Generator/6.2.0/java");

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

0 comments on commit 3d14a98

Please sign in to comment.