Skip to content

Commit

Permalink
Package version updated (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankamkin authored Aug 27, 2024
1 parent 1c92689 commit dd536c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![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/)

- API version: 3.0
- SDK version: 24.7.0
- SDK version: 24.8.0

## Demo applications

Expand Down Expand Up @@ -68,7 +68,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-barcode-cloud</artifactId>
<version>24.7.0</version>
<version>24.8.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -83,7 +83,7 @@ mvn clean package

Then manually install the following JARs:

- `target/aspose-barcode-cloud-24.7.0.jar`
- `target/aspose-barcode-cloud-24.8.0.jar`
- `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>aspose-barcode-cloud</artifactId>
<packaging>jar</packaging>
<name>aspose-barcode-cloud</name>
<version>24.7.0</version>
<version>24.8.0</version>
<url>https://www.aspose.cloud</url>
<description>Aspose.BarCode Cloud SDK for Java</description>
<scm>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/aspose/barcode/cloud/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
/** ApiClient. */
public class ApiClient {
public final String apiVersion = "v3.0";
public final String clientVersion = "24.7.0";
public final String clientVersion = "24.8.0";

private String baseUrl = "https://api.aspose.cloud";
private String tokenUrl = baseUrl + "/connect/token";
Expand Down Expand Up @@ -85,7 +85,7 @@ protected ApiClient() {
json = new JSON();

// Set default User-Agent.
setUserAgent("Swagger-Codegen/24.7.0/java");
setUserAgent("Swagger-Codegen/24.8.0/java");

addDefaultHeader("x-aspose-client", "java sdk");
addDefaultHeader("x-aspose-client-version", clientVersion);
Expand Down

0 comments on commit dd536c0

Please sign in to comment.