Skip to content
Open
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 codegen/smithy-aws-kotlin-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
Expand Down
4 changes: 2 additions & 2 deletions codegen/smithy-kotlin-codegen-testutils/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 2 additions & 3 deletions codegen/smithy-kotlin-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
3 changes: 0 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<T>(
/**
* The signed output.
Expand Down
Loading