diff --git a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsKotlinDependency.kt b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsKotlinDependency.kt index 2d9e0cc4fbe..c1eac650fd7 100644 --- a/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsKotlinDependency.kt +++ b/codegen/smithy-aws-kotlin-codegen/src/main/kotlin/aws/sdk/kotlin/codegen/AwsKotlinDependency.kt @@ -16,7 +16,7 @@ const val AWS_CLIENT_RT_REGIONS_NS = "aws.sdk.kotlin.runtime.regions" const val AWS_CLIENT_RT_GROUP: String = "aws.sdk.kotlin" // note: this version doesn't really matter since we substitute it for project dependency notation // when generating client build files -const val AWS_CLIENT_RT_VERSION: String = "0.1.0-SNAPSHOT" +const val AWS_CLIENT_RT_VERSION: String = "0.1.0" /** * Container object for AWS specific dependencies diff --git a/gradle.properties b/gradle.properties index d49bc857121..405c1a46321 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,12 +1,12 @@ kotlin.code.style=official # sdk -sdkVersion=0.1.0-SNAPSHOT +sdkVersion=0.1.0 # codegen smithyVersion=1.6.1 smithyGradleVersion=0.5.2 -smithyKotlinVersion=0.1.0-SNAPSHOT +smithyKotlinVersion=0.1.0 # kotlin kotlinVersion=1.4.31 @@ -19,8 +19,8 @@ kotlinJVMTargetVersion=1.8 coroutinesVersion=1.4.3 # default smithy-kotlin:client-runtime library version -smithyKotlinClientRtVersion=0.1.0-SNAPSHOT -crtKotlinVersion=0.1.0-SNAPSHOT +smithyKotlinClientRtVersion=0.1.0 +crtKotlinVersion=0.1.0 # testing/utility junitVersion=5.6.2