From a69c346001adad00d689a65487c500acd8e85d2a Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Thu, 9 Nov 2023 10:00:19 -0500 Subject: [PATCH] Update crate guidance to match top-level guidance (#3153) ## Motivation and Context Currently the guidance on the root repo doesn't match the guidance in the crates themselves. Screenshot 2023-11-09 at 9 59 58 AM ## Description Update docs to match ## Testing - [x] post screenshot of docs once they're generated ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._ --- .../software/amazon/smithy/rustsdk/AwsCrateDocsDecorator.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/aws/sdk-codegen/src/main/kotlin/software/amazon/smithy/rustsdk/AwsCrateDocsDecorator.kt b/aws/sdk-codegen/src/main/kotlin/software/amazon/smithy/rustsdk/AwsCrateDocsDecorator.kt index f167015ac2..047443d803 100644 --- a/aws/sdk-codegen/src/main/kotlin/software/amazon/smithy/rustsdk/AwsCrateDocsDecorator.kt +++ b/aws/sdk-codegen/src/main/kotlin/software/amazon/smithy/rustsdk/AwsCrateDocsDecorator.kt @@ -119,11 +119,12 @@ internal class AwsCrateDocGenerator(private val codegenContext: ClientCodegenCon if (includeHeader) { template(asComments, escape("# $moduleName\n")) } + // NOTE: when you change this, you must also change SDK_README.md.hb template( asComments, """ - **Please Note: The SDK is currently in Developer Preview and is intended strictly for - feedback purposes only. Do not use this SDK for production workloads.**${"\n"} + **Please Note: The SDK is currently released as a developer preview, without support or assistance for use + on production workloads. Any use in production is at your own risk.**${"\n"} """.trimIndent(), )