Skip to content

Commit

Permalink
Merge pull request #61 from fingerprintjs/feature/release-git
Browse files Browse the repository at this point in the history
fix: commit updated assets on release
  • Loading branch information
Sergey Shelomentsev authored Aug 8, 2024
2 parents a2f308a + 38e32f6 commit dce3e7a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,10 @@ module.exports = {
"assets": [
"CHANGELOG.md",
"README.md",
"config.json",
"build.gradle",
"config.yaml",
"gradle.properties",
"docs/**/*",
"src/**/*"
"sdk/**/*",
"scripts/generate.sh",
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion = 5.1.1
projectVersion = 6.0.0
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.1.1'
VERSION='6.0.0'

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

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

0 comments on commit dce3e7a

Please sign in to comment.