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

Commit 01f0f1b

Browse files
authored
Version 450 release, Kotlin marked as stable (#441)
* Version update * Docs regen * version changed * Fixes readme typo
1 parent 2c750d0 commit 01f0f1b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Currently, the following languages/frameworks are supported:
1717

1818
| Feature | [Python](docs/generators/python.md) | [Java](docs/generators/java.md) | [Kotlin](docs/generators/kotlin.md) |
1919
|----------------------------------------------------------------------------------------------------------------------|-------------------------------------|---------------------------------|-------------------------------------|
20-
| Generator status | stable | stable | experimental |
20+
| Generator status | stable | stable | stable |
2121
| Openapi v3.0.0-3.1.0 ingestion | X | X | X |
2222
| Json Schema 2020-12 Support (components/schemas) | X | X | X |
2323
| Component schema classes + documentation produced | X | X | X |
@@ -168,7 +168,7 @@ Once built, `run-in-docker.sh` will act as an executable for openapi-json-schema
168168
```sh
169169
./bin/run-in-docker.sh help # Executes 'help' command for openapi-json-schema-generator-cli
170170
./bin/run-in-docker.sh list # Executes 'list' command for openapi-json-schema-generator-cli
171-
./bin/run-in-docker.sh /gen/bin/python-petstore.sh # Builds the Go client
171+
./bin/run-in-docker.sh /gen/bin/python-petstore.sh # Builds the Python client
172172
./bin/run-in-docker.sh generate -i src/test/resources/3_0/petstore.yaml \
173173
-g go -o /gen/out/python-petstore -p packageName=petstore_api # generates python client, outputs locally to ./out/python-petstore
174174
```

docs/generators/kotlin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Documentation for the kotlin generator
77
| Property | Value | Notes |
88
| -------- | ----- | ----- |
99
| generator name | kotlin | pass this to the generate command after -g |
10-
| generator stability | EXPERIMENTAL | |
10+
| generator stability | STABLE | |
1111
| generator type | CLIENT | |
1212
| generator language | Kotlin | |
1313
| generator language version | 1.9.23 | |

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@
446446
</dependencies>
447447
<properties>
448448
<!-- RELEASE_VERSION -->
449-
<revision>4.4.0</revision>
449+
<revision>4.5.0</revision>
450450
<!-- /RELEASE_VERSION -->
451451
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
452452
<java.version>11</java.version>

src/main/java/org/openapijsonschematools/codegen/generators/KotlinClientGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ public KotlinClientGenerator(GeneratorSettings generatorSettings, WorkflowSettin
318318
.language(GeneratorLanguage.KOTLIN)
319319
.languageVersion("1.9.23")
320320
.type(GeneratorType.CLIENT)
321-
.stability(Stability.EXPERIMENTAL)
321+
.stability(Stability.STABLE)
322322
.featureSet(featureSet)
323323
.generationMessage(String.format(Locale.ROOT, "OpenAPI JSON Schema Generator: %s (%s)", "kotlin", GeneratorType.CLIENT))
324324
.helpMsg(String.join(

0 commit comments

Comments
 (0)