diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 1bfba7d6a5e06..9d6c9437e1d0d 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,13 @@ # Smithy AWS Typescript Codegen Changelog +## 0.32.0 (2025-06-26) + +## Features +- Upgraded to smithy-typescript 0.32.0 ([Release Notes](https://github.com/smithy-lang/smithy-typescript/blob/main/CHANGELOG.md#0320-2025-06-26)) + +## Bug Fixes +- Added default AWS regional endpoints for generated AWS clients ([#7151](https://github.com/aws/aws-sdk-js-v3/pull/7151)) + ## 0.31.1 (2025-06-23) ## Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index cfa847bb2a7f9..d8439ff83df66 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.31.1" + version = "0.32.0" } // The root project doesn't produce a JAR. diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index c00847dbdea54..37ccef2ebf415 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -36,7 +36,7 @@ buildscript { dependencies { // Smithy TypeScript - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.31.1") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.32.0") // Smithy generic dependencies api("software.amazon.smithy:smithy-model:$smithyVersion")