Skip to content

Commit 2e9624c

Browse files
committed
Version 24.4.0
1 parent 46aa4a0 commit 2e9624c

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Freleases.aspose.cloud%2Fjava%2Frepo%2Fcom%2Faspose%2Faspose-barcode-cloud%2Fmaven-metadata.xml)](https://releases.aspose.cloud/java/repo/com/aspose/aspose-barcode-cloud/)
66

77
- API version: 3.0
8-
- SDK version: 24.3.0
8+
- SDK version: 24.4.0
99

1010
## Demo applications
1111

@@ -68,7 +68,7 @@ Add this dependency to your project's POM:
6868
<dependency>
6969
<groupId>com.aspose</groupId>
7070
<artifactId>aspose-barcode-cloud</artifactId>
71-
<version>24.3.0</version>
71+
<version>24.4.0</version>
7272
<scope>compile</scope>
7373
</dependency>
7474
```
@@ -83,7 +83,7 @@ mvn clean package
8383

8484
Then manually install the following JARs:
8585

86-
- `target/aspose-barcode-cloud-24.3.0.jar`
86+
- `target/aspose-barcode-cloud-24.4.0.jar`
8787
- `target/lib/*.jar`
8888

8989
## Getting Started
@@ -130,6 +130,7 @@ public class BarcodeApiExample {
130130
String text = "Aspose.BarCode for Cloud Sample";
131131
GetBarcodeGenerateRequest request = new GetBarcodeGenerateRequest(type, text);
132132
request.textLocation = "None";
133+
133134
return api.getBarcodeGenerate(request);
134135
}
135136

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>aspose-barcode-cloud</artifactId>
66
<packaging>jar</packaging>
77
<name>aspose-barcode-cloud</name>
8-
<version>24.3.0</version>
8+
<version>24.4.0</version>
99
<url>https://www.aspose.cloud</url>
1010
<description>Aspose.BarCode Cloud SDK for Java</description>
1111
<scm>

src/main/java/com/aspose/barcode/cloud/ApiClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
/** ApiClient. */
6767
public class ApiClient {
6868
public final String apiVersion = "v3.0";
69-
public final String clientVersion = "24.3.0";
69+
public final String clientVersion = "24.4.0";
7070

7171
private String baseUrl = "https://api.aspose.cloud";
7272
private String tokenUrl = baseUrl + "/connect/token";
@@ -110,7 +110,7 @@ protected ApiClient() {
110110
json = new JSON();
111111

112112
// Set default User-Agent.
113-
setUserAgent("Swagger-Codegen/24.3.0/java");
113+
setUserAgent("Swagger-Codegen/24.4.0/java");
114114

115115
addDefaultHeader("x-aspose-client", "java sdk");
116116
addDefaultHeader("x-aspose-client-version", clientVersion);

0 commit comments

Comments
 (0)