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

Version 450 release, Kotlin marked as stable #441

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Currently, the following languages/frameworks are supported:

| Feature | [Python](docs/generators/python.md) | [Java](docs/generators/java.md) | [Kotlin](docs/generators/kotlin.md) |
|----------------------------------------------------------------------------------------------------------------------|-------------------------------------|---------------------------------|-------------------------------------|
| Generator status | stable | stable | experimental |
| Generator status | stable | stable | stable |
| Openapi v3.0.0-3.1.0 ingestion | X | X | X |
| Json Schema 2020-12 Support (components/schemas) | X | X | X |
| Component schema classes + documentation produced | X | X | X |
Expand Down Expand Up @@ -168,7 +168,7 @@ Once built, `run-in-docker.sh` will act as an executable for openapi-json-schema
```sh
./bin/run-in-docker.sh help # Executes 'help' command for openapi-json-schema-generator-cli
./bin/run-in-docker.sh list # Executes 'list' command for openapi-json-schema-generator-cli
./bin/run-in-docker.sh /gen/bin/python-petstore.sh # Builds the Go client
./bin/run-in-docker.sh /gen/bin/python-petstore.sh # Builds the Python client
./bin/run-in-docker.sh generate -i src/test/resources/3_0/petstore.yaml \
-g go -o /gen/out/python-petstore -p packageName=petstore_api # generates python client, outputs locally to ./out/python-petstore
```
Expand Down
2 changes: 1 addition & 1 deletion docs/generators/kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: Documentation for the kotlin generator
| Property | Value | Notes |
| -------- | ----- | ----- |
| generator name | kotlin | pass this to the generate command after -g |
| generator stability | EXPERIMENTAL | |
| generator stability | STABLE | |
| generator type | CLIENT | |
| generator language | Kotlin | |
| generator language version | 1.9.23 | |
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@
</dependencies>
<properties>
<!-- RELEASE_VERSION -->
<revision>4.4.0</revision>
<revision>4.5.0</revision>
<!-- /RELEASE_VERSION -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ public KotlinClientGenerator(GeneratorSettings generatorSettings, WorkflowSettin
.language(GeneratorLanguage.KOTLIN)
.languageVersion("1.9.23")
.type(GeneratorType.CLIENT)
.stability(Stability.EXPERIMENTAL)
.stability(Stability.STABLE)
.featureSet(featureSet)
.generationMessage(String.format(Locale.ROOT, "OpenAPI JSON Schema Generator: %s (%s)", "kotlin", GeneratorType.CLIENT))
.helpMsg(String.join(
Expand Down