diff --git a/codegen/smithy-aws-kotlin-codegen/build.gradle.kts b/codegen/smithy-aws-kotlin-codegen/build.gradle.kts index dddde158e8..7cf0f53531 100644 --- a/codegen/smithy-aws-kotlin-codegen/build.gradle.kts +++ b/codegen/smithy-aws-kotlin-codegen/build.gradle.kts @@ -12,10 +12,10 @@ plugins { `maven-publish` } -val codegenVersion: String by project +val sdkVersion: String by project description = "Smithy codegen support for AWS protocols" group = "software.amazon.smithy.kotlin" -version = codegenVersion +version = sdkVersion dependencies { api(project(":codegen:smithy-kotlin-codegen")) diff --git a/codegen/smithy-kotlin-codegen-testutils/build.gradle.kts b/codegen/smithy-kotlin-codegen-testutils/build.gradle.kts index 8b3e1fdc8a..2544972799 100644 --- a/codegen/smithy-kotlin-codegen-testutils/build.gradle.kts +++ b/codegen/smithy-kotlin-codegen-testutils/build.gradle.kts @@ -16,9 +16,9 @@ description = "Provides common test utilities for Smithy-Kotlin code generation" extra["displayName"] = "Smithy :: Kotlin :: Codegen Utils" extra["moduleName"] = "software.amazon.smithy.kotlin.codegen.test" -val codegenVersion: String by project +val sdkVersion: String by project group = "software.amazon.smithy.kotlin" -version = codegenVersion +version = sdkVersion dependencies { implementation(libs.smithy.aws.traits) diff --git a/codegen/smithy-kotlin-codegen/build.gradle.kts b/codegen/smithy-kotlin-codegen/build.gradle.kts index 0ab1c9881b..84d39c8be6 100644 --- a/codegen/smithy-kotlin-codegen/build.gradle.kts +++ b/codegen/smithy-kotlin-codegen/build.gradle.kts @@ -16,11 +16,10 @@ description = "Generates Kotlin code from Smithy models" extra["displayName"] = "Smithy :: Kotlin :: Codegen" extra["moduleName"] = "software.amazon.smithy.kotlin.codegen" -val codegenVersion: String by project +val sdkVersion: String by project group = "software.amazon.smithy.kotlin" -version = codegenVersion +version = sdkVersion -val sdkVersion: String by project val runtimeVersion = sdkVersion dependencies { diff --git a/gradle.properties b/gradle.properties index 813eebdb0d..0780367acb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,9 +17,6 @@ org.gradle.parallel=true # SDK sdkVersion=1.5.21-SNAPSHOT -# codegen -codegenVersion=0.35.21-SNAPSHOT - # FIXME Remove after Dokka 2.0 Gradle plugin is stable org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true \ No newline at end of file diff --git a/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningConfig.kt b/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningConfig.kt index c26fcf624d..d16a9678f4 100644 --- a/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningConfig.kt +++ b/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningConfig.kt @@ -101,7 +101,7 @@ public class AwsSigningConfig(builder: Builder) { * rather supplements it. In particular, a header will get signed if and only if it returns true to both the * internal check and this function (if defined). * - * The default predicate is to not reject signing any headers (i.e., `_ -> true`). + * The default predicate signs all headers (i.e., `_ -> true`). */ public val shouldSignHeader: ShouldSignHeaderPredicate = builder.shouldSignHeader diff --git a/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningResult.kt b/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningResult.kt index 8c7bc167bd..e450376a1c 100644 --- a/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningResult.kt +++ b/runtime/auth/aws-signing-common/common/src/aws/smithy/kotlin/runtime/auth/awssigning/AwsSigningResult.kt @@ -4,13 +4,10 @@ */ package aws.smithy.kotlin.runtime.auth.awssigning -import aws.smithy.kotlin.runtime.InternalApi - /** * The result of an AWS signing operation * @param T The type of the result */ -@InternalApi public data class AwsSigningResult( /** * The signed output.