Skip to content

Commit

Permalink
actually version
Browse files Browse the repository at this point in the history
  • Loading branch information
jsanford8 committed Apr 26, 2024
1 parent 288cfbe commit 27a10ae
Show file tree
Hide file tree
Showing 4 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 @@ -48,7 +48,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.mux</groupId>
<artifactId>mux-sdk-java</artifactId>
<version>0.11.0</version>
<version>0.12.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -58,7 +58,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
compile "com.mux:mux-sdk-java:0.11.0"
compile "com.mux:mux-sdk-java:0.12.0"
```

### Others
Expand All @@ -71,7 +71,7 @@ mvn clean package

Then manually install the following JARs:

* `target/mux-sdk-java-0.11.0.jar`
* `target/mux-sdk-java-0.12.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group = 'com.mux'
version = '0.11.0'
version = '0.12.0'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gen/generator-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/java.md",
"artifactVersion": "0.11.0",
"artifactVersion": "0.12.0",
"apiPackage": "com.mux.sdk",
"artifactDescription": "Mux SDK for Java",
"artifactId": "mux-sdk-java",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/mux/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("Mux Java | 0.11.0");
setUserAgent("Mux Java | 0.12.0");

authentications = new HashMap<String, Authentication>();
}
Expand Down

0 comments on commit 27a10ae

Please sign in to comment.