Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
chore: bump version for release (#148)
Browse files Browse the repository at this point in the history
This covers steps (1) and (2) of #109 

1. The version was manually updated in
85c96ff
2. The GitHub Actions PR workflow regenerated the code for this PR in
91c72f3
  • Loading branch information
ctreatma authored Sep 20, 2023
2 parents c58890d + 91c72f3 commit 0010a9f
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions equinix-openapi-metal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.equinix</groupId>
<artifactId>equinix-openapi-metal</artifactId>
<version>0.6.0</version>
<version>0.7.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -136,7 +136,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "com.equinix:equinix-openapi-metal:0.6.0"
implementation "com.equinix:equinix-openapi-metal:0.7.0"
}
```

Expand All @@ -150,7 +150,7 @@ mvn clean package

Then manually install the following JARs:

* `target/equinix-openapi-metal-0.6.0.jar`
* `target/equinix-openapi-metal-0.7.0.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ apply plugin: 'java'
apply plugin: 'com.diffplug.spotless'

group = 'com.equinix'
version = '0.6.0'
version = '0.7.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.equinix",
name := "equinix-openapi-metal",
version := "0.6.0",
version := "0.7.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion equinix-openapi-metal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>equinix-openapi-metal</artifactId>
<packaging>jar</packaging>
<name>equinix-openapi-metal</name>
<version>0.6.0</version>
<version>0.7.0</version>
<url>https://github.com/openapitools/openapi-generator</url>
<description>OpenAPI Java</description>
<scm>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private void init() {
json = new JSON();

// Set default User-Agent.
setUserAgent("metal-java/0.6.0");
setUserAgent("metal-java/0.7.0");

authentications = new HashMap<String, Authentication>();
}
Expand Down
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.6.0";
public static final String VERSION = "0.7.0";

private static ApiClient defaultApiClient = new ApiClient();

Expand Down
4 changes: 2 additions & 2 deletions spec/oas3.config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"groupId": "com.equinix",
"artifactId": "equinix-openapi-metal",
"artifactVersion": "0.6.0",
"httpUserAgent": "metal-java/0.6.0",
"artifactVersion": "0.7.0",
"httpUserAgent": "metal-java/0.7.0",
"library": "okhttp-gson",
"invokerPackage": "com.equinix.openapi",
"modelPackage": "com.equinix.openapi.metal.v1.model",
Expand Down

0 comments on commit 0010a9f

Please sign in to comment.