Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.84.1
v2.84.6
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>ai.reveng</groupId>
<artifactId>sdk</artifactId>
<version>2.84.1</version>
<version>2.84.6</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
implementation "ai.reveng:sdk:2.84.1"
implementation "ai.reveng:sdk:2.84.6"
}
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'ai.reveng'
version = '2.84.1'
version = '2.84.6'



Expand Down Expand Up @@ -171,7 +171,7 @@ mavenPublishing {
publishToMavenCentral(true)
signAllPublications()

coordinates("ai.reveng", "sdk", "2.84.1")
coordinates("ai.reveng", "sdk", "2.84.6")

pom {
name = "sdk"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "ai.reveng",
name := "sdk",
version := "2.84.1",
version := "2.84.6",
scalaVersion := "2.11.12",
scalacOptions ++= Seq("-feature"),
compile / javacOptions ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>sdk</artifactId>
<packaging>jar</packaging>
<name>sdk</name>
<version>2.84.1</version>
<version>2.84.6</version>
<url>https://github.com/RevEngAI/sdk-java</url>
<description>Java SDK for the RevEng.AI API</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/2.84.1/java");
setUserAgent("OpenAPI-Generator/2.84.6/java");

authentications = new HashMap<String, Authentication>();
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ai/reveng/invoker/Configuration.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class Configuration {
public static final String VERSION = "2.84.1";
public static final String VERSION = "2.84.6";

private static final AtomicReference<ApiClient> defaultApiClient = new AtomicReference<>();
private static volatile Supplier<ApiClient> apiClientFactory = ApiClient::new;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ public class AnalysisFunctionMatchingRequest {
private Boolean noCache = false;

public static final String SERIALIZED_NAME_USE_CANONICAL_NAMES = "use_canonical_names";
@Deprecated
@SerializedName(SERIALIZED_NAME_USE_CANONICAL_NAMES)
@javax.annotation.Nullable
private Boolean useCanonicalNames = false;
Expand Down Expand Up @@ -253,7 +252,6 @@ public void setNoCache(@javax.annotation.Nullable Boolean noCache) {
}


@Deprecated
public AnalysisFunctionMatchingRequest useCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
return this;
Expand All @@ -262,15 +260,12 @@ public AnalysisFunctionMatchingRequest useCanonicalNames(@javax.annotation.Nulla
/**
* Whether to use canonical function names during function matching for confidence results, default is False
* @return useCanonicalNames
* @deprecated
*/
@Deprecated
@javax.annotation.Nullable
public Boolean getUseCanonicalNames() {
return useCanonicalNames;
}

@Deprecated
public void setUseCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
}
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/ai/reveng/model/AutoUnstripRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public class AutoUnstripRequest {
private Boolean noCache = false;

public static final String SERIALIZED_NAME_USE_CANONICAL_NAMES = "use_canonical_names";
@Deprecated
@SerializedName(SERIALIZED_NAME_USE_CANONICAL_NAMES)
@javax.annotation.Nullable
private Boolean useCanonicalNames = false;
Expand Down Expand Up @@ -241,7 +240,6 @@ public void setNoCache(@javax.annotation.Nullable Boolean noCache) {
}


@Deprecated
public AutoUnstripRequest useCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
return this;
Expand All @@ -250,15 +248,12 @@ public AutoUnstripRequest useCanonicalNames(@javax.annotation.Nullable Boolean u
/**
* Whether to use canonical function names during matching for auto-unstrip, default is False
* @return useCanonicalNames
* @deprecated
*/
@Deprecated
@javax.annotation.Nullable
public Boolean getUseCanonicalNames() {
return useCanonicalNames;
}

@Deprecated
public void setUseCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
}
Expand Down
5 changes: 0 additions & 5 deletions src/main/java/ai/reveng/model/FunctionMatchingRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public class FunctionMatchingRequest {
private Boolean noCache = false;

public static final String SERIALIZED_NAME_USE_CANONICAL_NAMES = "use_canonical_names";
@Deprecated
@SerializedName(SERIALIZED_NAME_USE_CANONICAL_NAMES)
@javax.annotation.Nullable
private Boolean useCanonicalNames = false;
Expand Down Expand Up @@ -311,7 +310,6 @@ public void setNoCache(@javax.annotation.Nullable Boolean noCache) {
}


@Deprecated
public FunctionMatchingRequest useCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
return this;
Expand All @@ -320,15 +318,12 @@ public FunctionMatchingRequest useCanonicalNames(@javax.annotation.Nullable Bool
/**
* Whether to use canonical function names during function matching for confidence results, default is False
* @return useCanonicalNames
* @deprecated
*/
@Deprecated
@javax.annotation.Nullable
public Boolean getUseCanonicalNames() {
return useCanonicalNames;
}

@Deprecated
public void setUseCanonicalNames(@javax.annotation.Nullable Boolean useCanonicalNames) {
this.useCanonicalNames = useCanonicalNames;
}
Expand Down