From c23e57ede5791c8f44b923ccb7d534076a45b057 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 4 Jun 2024 09:50:33 -0700 Subject: [PATCH 1/4] Version update --- README.md | 2 +- pom.xml | 2 +- .../codegen/generators/KotlinClientGenerator.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 168e825cf9c..e966dc773f0 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/pom.xml b/pom.xml index bbb19f2831b..4d8e520a623 100644 --- a/pom.xml +++ b/pom.xml @@ -446,7 +446,7 @@ - 4.4.0 + 4.4.1 UTF-8 11 diff --git a/src/main/java/org/openapijsonschematools/codegen/generators/KotlinClientGenerator.java b/src/main/java/org/openapijsonschematools/codegen/generators/KotlinClientGenerator.java index 1e331f7adca..8a15818c50a 100644 --- a/src/main/java/org/openapijsonschematools/codegen/generators/KotlinClientGenerator.java +++ b/src/main/java/org/openapijsonschematools/codegen/generators/KotlinClientGenerator.java @@ -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( From 27e1a250f379e289369a3391f58fe3abe9b1d028 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 4 Jun 2024 09:52:02 -0700 Subject: [PATCH 2/4] Docs regen --- docs/generators/kotlin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/generators/kotlin.md b/docs/generators/kotlin.md index e86ec379552..135546b1b68 100644 --- a/docs/generators/kotlin.md +++ b/docs/generators/kotlin.md @@ -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 | | From 5a3b0f3f167118d020e921cddd69a5b72f8c131f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 4 Jun 2024 09:52:30 -0700 Subject: [PATCH 3/4] version changed --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4d8e520a623..fa24316c432 100644 --- a/pom.xml +++ b/pom.xml @@ -446,7 +446,7 @@ - 4.4.1 + 4.5.0 UTF-8 11 From 41313de334ac49b8fec8e6c9b4e7fab615288757 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 4 Jun 2024 09:55:41 -0700 Subject: [PATCH 4/4] Fixes readme typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e966dc773f0..b0d2141847a 100644 --- a/README.md +++ b/README.md @@ -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 ```