Skip to content

Commit 62ab7f3

Browse files
Apply suggestions from code review
Co-authored-by: Cameron Koegel <[email protected]>
1 parent 06c7f02 commit 62ab7f3

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.bandwidth.sdk:bandwidth-sdk:9.1.5"
59+
implementation "com.bandwidth.sdk:bandwidth-sdk:10.0.0"
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ mvn clean package
7070

7171
Then manually install the following JARs:
7272

73-
* `target/bandwidth-sdk-9.1.5.jar`
73+
* `target/bandwidth-sdk-10.0.0.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'com.bandwidth.sdk'
7-
version = '9.1.5'
7+
version = '10.0.0'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.bandwidth.sdk",
44
name := "bandwidth-sdk",
5-
version := "9.1.5",
5+
version := "10.0.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

openapi-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
artifactId: bandwidth-sdk
2-
artifactVersion: 9.1.5
2+
artifactVersion: 10.0.0
33
artifactDescription: The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
44
artifactUrl: https://github.com/Bandwidth/java-sdk
55
developerEmail: [email protected]

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>bandwidth-sdk</artifactId>
77
<packaging>jar</packaging>
88
<name>bandwidth-sdk</name>
9-
<version>9.1.5</version>
9+
<version>10.0.0</version>
1010
<url>https://github.com/Bandwidth/java-sdk</url>
1111
<description>The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs</description>
1212
<scm>

src/main/java/com/bandwidth/sdk/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ private void init() {
140140
json = new JSON();
141141

142142
// Set default User-Agent.
143-
setUserAgent("OpenAPI-Generator/9.1.5/java");
143+
setUserAgent("OpenAPI-Generator/10.0.0/java");
144144

145145
authentications = new HashMap<String, Authentication>();
146146
}

src/main/java/com/bandwidth/sdk/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
1717
public class Configuration {
18-
public static final String VERSION = "9.1.5";
18+
public static final String VERSION = "10.0.0";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

0 commit comments

Comments
 (0)