Skip to content

Commit 2d39aaa

Browse files
committed
SWI-6181 Update User Agent Header
1 parent 6e7ba42 commit 2d39aaa

File tree

10 files changed

+592
-148
lines changed

10 files changed

+592
-148
lines changed

.openapi-generator-ignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
99
#ApiClient.cs
1010

11-
pom.xml
11+
# pom.xml
1212
.idea
1313
.gitignore
1414
.github/workflows/maven.yml

.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ gradle/wrapper/gradle-wrapper.jar
111111
gradle/wrapper/gradle-wrapper.properties
112112
gradlew
113113
gradlew.bat
114+
pom.xml
114115
settings.gradle
115116
src/main/AndroidManifest.xml
116117
src/main/java/com/bandwidth/sdk/ApiCallback.java

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Add this dependency to your project's POM:
4141
<dependency>
4242
<groupId>com.bandwidth.sdk</groupId>
4343
<artifactId>bandwidth-sdk</artifactId>
44-
<version>10.1.0</version>
44+
<version>1.0.0-dev</version>
4545
<scope>compile</scope>
4646
</dependency>
4747
```
@@ -57,7 +57,7 @@ Add this dependency to your project's build file:
5757
}
5858
5959
dependencies {
60-
implementation "com.bandwidth.sdk:bandwidth-sdk:10.1.0"
60+
implementation "com.bandwidth.sdk:bandwidth-sdk:1.0.0-dev"
6161
}
6262
```
6363

@@ -71,7 +71,7 @@ mvn clean package
7171

7272
Then manually install the following JARs:
7373

74-
* `target/bandwidth-sdk-10.1.0.jar`
74+
* `target/bandwidth-sdk-1.0.0-dev.jar`
7575
* `target/lib/*.jar`
7676

7777
## 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 = '10.1.0'
7+
version = '1.0.0-dev'
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 := "10.1.0",
5+
version := "1.0.0-dev",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

0 commit comments

Comments
 (0)