Skip to content

Commit

Permalink
Bump version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
louismrose authored and github-actions[bot] committed Apr 18, 2024
1 parent ee02bb2 commit f149ba0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.zamzar</groupId>
<artifactId>zamzar-java</artifactId>
<version>0.0.14</version>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -42,7 +42,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "com.zamzar:zamzar-java:0.0.14"
implementation "com.zamzar:zamzar-java:1.0.0"
```

## Usage
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>zamzar-java</artifactId>
<packaging>jar</packaging>
<name>zamzar-java</name>
<version>0.0.14</version>
<version>1.0.0</version>
<url>https://github.com/zamzar/zamzar-java</url>
<description>Java SDK for the Zamzar API</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/zamzar/api/invoker/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("OpenAPI-Generator/0.0.14/java");
setUserAgent("OpenAPI-Generator/1.0.0/java");

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

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

private static ApiClient defaultApiClient = new ApiClient();

Expand Down

0 comments on commit f149ba0

Please sign in to comment.