diff --git a/docs/faq-generators.md b/docs/faq-generators.md index e44e0c19b368..253336a30a9a 100644 --- a/docs/faq-generators.md +++ b/docs/faq-generators.md @@ -96,7 +96,7 @@ mvn integration-test ### Which Swift generator is still actively maintained? Please use `swift5` generator because Swift 4.x is deprecated. -There is a new `swift6` generator, that is currently in beta, try it and give us your feedback. +There is a new `swift6` generator, that is now stable, try it and give us your feedback. ### How do I implement bearer token authentication with URLSession on the Swift 5 API client? diff --git a/docs/generators.md b/docs/generators.md index 4c968c0f87a0..4c6c94f8e6fc 100644 --- a/docs/generators.md +++ b/docs/generators.md @@ -67,7 +67,7 @@ The following generators are available: * [scalaz](generators/scalaz.md) * [swift-combine](generators/swift-combine.md) * [swift5](generators/swift5.md) -* [swift6 (beta)](generators/swift6.md) +* [swift6](generators/swift6.md) * [typescript (experimental)](generators/typescript.md) * [typescript-angular](generators/typescript-angular.md) * [typescript-aurelia](generators/typescript-aurelia.md) diff --git a/docs/generators/swift6.md b/docs/generators/swift6.md index 1959f300a7f5..dfdf2eab373c 100644 --- a/docs/generators/swift6.md +++ b/docs/generators/swift6.md @@ -7,7 +7,7 @@ title: Documentation for the swift6 Generator | Property | Value | Notes | | -------- | ----- | ----- | | generator name | swift6 | pass this to the generate command after -g | -| generator stability | BETA | | +| generator stability | STABLE | | | generator type | CLIENT | | | generator language | Swift | | | generator default templating engine | mustache | | diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift5ClientCodegen.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift5ClientCodegen.java index 6c0d4bc47e2d..89c2fffb8eb3 100644 --- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift5ClientCodegen.java +++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift5ClientCodegen.java @@ -1342,7 +1342,7 @@ public void postProcess() { System.out.println("# swift5 generator is contributed by Bruno Coelho (https://github.com/4brunu). #"); System.out.println("# Please support his work directly via https://paypal.com/paypalme/4brunu \uD83D\uDE4F #"); System.out.println("# #"); - System.out.println("# There is a new swift6 generator, that is currently in beta. #"); + System.out.println("# There is a new swift6 generator, that is now stable. #"); System.out.println("# Try it and give us your feedback. #"); System.out.println("# https://openapi-generator.tech/docs/generators/swift6 #"); System.out.println("# #"); diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift6ClientCodegen.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift6ClientCodegen.java index 9fbddf8aeb2b..8e44c7d1fc25 100644 --- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift6ClientCodegen.java +++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/Swift6ClientCodegen.java @@ -142,7 +142,7 @@ public Swift6ClientCodegen() { this.useOneOfInterfaces = true; generatorMetadata = GeneratorMetadata.newBuilder(generatorMetadata) - .stability(Stability.BETA) + .stability(Stability.STABLE) .build(); outputFolder = "generated-code" + File.separator + "swift";