Skip to content

Commit 2cb9895

Browse files
authored
Merge pull request #64 from equinix-labs/java-version-to-match-0.11.0
feat: Java version to match 0.11.0
2 parents a615a52 + b3d6981 commit 2cb9895

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

equinix-openapi-fabric/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.equinix</groupId>
4242
<artifactId>equinix-openapi-fabric</artifactId>
43-
<version>0.10.0</version>
43+
<version>0.11.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.equinix:equinix-openapi-fabric:0.10.0"
59+
implementation "com.equinix:equinix-openapi-fabric:0.11.0"
6060
}
6161
```
6262

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

7171
Then manually install the following JARs:
7272

73-
* `target/equinix-openapi-fabric-0.10.0.jar`
73+
* `target/equinix-openapi-fabric-0.11.0.jar`
7474
* `target/lib/*.jar`
7575

7676
## Getting Started

equinix-openapi-fabric/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.equinix'
7-
version = '0.10.0'
7+
version = '0.11.0'
88

99
buildscript {
1010
repositories {

equinix-openapi-fabric/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.equinix",
44
name := "equinix-openapi-fabric",
5-
version := "0.10.0",
5+
version := "0.11.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

equinix-openapi-fabric/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>equinix-openapi-fabric</artifactId>
66
<packaging>jar</packaging>
77
<name>equinix-openapi-fabric</name>
8-
<version>0.10.0</version>
8+
<version>0.11.0</version>
99
<url>https://github.com/openapitools/openapi-generator</url>
1010
<description>OpenAPI Java</description>
1111
<scm>

equinix-openapi-fabric/src/main/java/com/equinix/openapi/fabric/ApiClient.java

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

143143
// Set default User-Agent.
144-
setUserAgent("fabric-sdk-java/0.10.0");
144+
setUserAgent("fabric-sdk-java/0.11.0");
145145

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

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.0
1+
0.11.0

0 commit comments

Comments
 (0)