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:
Adam Rybicki 2023-06-14 11:32:11 +02:00 committed by GitHub
parent 7812dd525c
commit 522368160a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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