forked from loafle/openapi-generator-original
Scala sttp stability change (#15842)
* changed stability in ScalaSttpClientCodegen * updated files from scripts --------- Co-authored-by: Adam Fish Rybicki <adamrybicki@adams-macbook-pro.home>
This commit is contained in:
parent
7812dd525c
commit
522368160a
@ -7,11 +7,11 @@ title: Documentation for the scala-sttp Generator
|
||||
| Property | Value | Notes |
|
||||
| -------- | ----- | ----- |
|
||||
| generator name | scala-sttp | pass this to the generate command after -g |
|
||||
| generator stability | BETA | |
|
||||
| generator stability | STABLE | |
|
||||
| generator type | CLIENT | |
|
||||
| generator language | Scala | |
|
||||
| generator default templating engine | mustache | |
|
||||
| helpTxt | Generates a Scala client library (beta) based on Sttp. | |
|
||||
| helpTxt | Generates a Scala client library based on Sttp. | |
|
||||
|
||||
## CONFIG OPTIONS
|
||||
These options may be applied as additional-properties (cli) or configOptions (plugins). Refer to [configuration docs](https://openapi-generator.tech/docs/configuration) for more details.
|
||||
|
@ -84,7 +84,7 @@ public class ScalaSttpClientCodegen extends AbstractScalaCodegen implements Code
|
||||
public ScalaSttpClientCodegen() {
|
||||
super();
|
||||
generatorMetadata = GeneratorMetadata.newBuilder(generatorMetadata)
|
||||
.stability(Stability.BETA)
|
||||
.stability(Stability.STABLE)
|
||||
.build();
|
||||
|
||||
modifyFeatureSet(features -> features
|
||||
@ -192,7 +192,7 @@ public class ScalaSttpClientCodegen extends AbstractScalaCodegen implements Code
|
||||
|
||||
@Override
|
||||
public String getHelp() {
|
||||
return "Generates a Scala client library (beta) based on Sttp.";
|
||||
return "Generates a Scala client library based on Sttp.";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user