Skip to content

Commit

Permalink
chore(release): 2.3.0-develop.1 [skip ci]
Browse files Browse the repository at this point in the history
## [2.3.0-develop.1](v2.2.0...v2.3.0-develop.1) (2023-12-22)

### Features

* introduce `datacenter` field for the `IpInfo` signal in addition to the wrong `dataCenter` ([7ba499f](7ba499f))
  • Loading branch information
semantic-release-bot committed Dec 22, 2023
1 parent d82ecbe commit 4b7b20a
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.3.0-develop.1](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v2.2.0...v2.3.0-develop.1) (2023-12-22)


### Features

* introduce `datacenter` field for the `IpInfo` signal in addition to the wrong `dataCenter` ([7ba499f](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/commit/7ba499f08a5dba88abe313ed3235516690eec508))

## [2.2.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-java-sdk/compare/v2.1.1...v2.2.0) (2023-11-27)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.github.fingerprintjs</groupId>
<artifactId>fingerprint-pro-server-api-java-sdk</artifactId>
<version>v2.2.0</version>
<version>vdev-2.3.0-1</version>
</dependency>
```

Expand All @@ -83,7 +83,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:v2.2.0"
implementation "com.github.fingerprintjs:fingerprint-pro-server-api-java-sdk:vdev-2.3.0-1"
}
```

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

Then manually install the following JARs:

- `target/fingerprint-pro-server-api-sdk-2.2.0.jar`
- `target/fingerprint-pro-server-api-sdk-dev-2.3.0-1.jar`

## Usage

Expand Down
4 changes: 2 additions & 2 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 = '2.2.0'
version = 'dev-2.3.0-1'

buildscript {
repositories {
Expand Down Expand Up @@ -37,7 +37,7 @@ publishing {
artifact jar
groupId 'com.fingerprint'
artifactId 'fingerprint-pro-server-api-sdk'
version '2.2.0'
version 'dev-2.3.0-1'
}
}
}
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: 2.2.0
artifactVersion: dev-2.3.0-1
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='2.2.0'
VERSION='dev-2.3.0-1'

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/2.2.0";
public static final String INTEGRATION_INFO = "fingerprint-pro-server-java-sdk/dev-2.3.0-1";
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/2.2.0/java");
setUserAgent("OpenAPI-Generator/dev-2.3.0-1/java");

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

0 comments on commit 4b7b20a

Please sign in to comment.