From 41a96d4ad8961f97c71f503d1abd0189de67a172 Mon Sep 17 00:00:00 2001 From: Kevin Stich Date: Fri, 27 Sep 2024 14:10:41 -0700 Subject: [PATCH] Bump codegen version to 0.24.0 --- CHANGELOG.md | 11 +++++++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92b9dc39a49..0a962c2ac22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Smithy Typescript Codegen Changelog +## 0.24.0 (2024-09-30) + +### Features + +* Use spread operator for Command endpoint params only when necessary ([#1396](https://github.com/smithy-lang/smithy-typescript/pull/1396)) +* Improve IDE type navigation assistance for command classes ([#1373](https://github.com/smithy-lang/smithy-typescript/pull/1373)) + +### Bug Fixes + +* Allow empty string field values for headers ([#1412](https://github.com/smithy-lang/smithy-typescript/pull/1412)) + ## 0.23.0 (2024-09-09) ### Features diff --git a/README.md b/README.md index 555c32cdf44..965f2c0365c 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith // Add the Smithy TypeScript code generator dependency "maven": { "dependencies": [ - "software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.0" + "software.amazon.smithy.typescript:smithy-typescript-codegen:0.24.0" ] }, "plugins": { @@ -141,7 +141,7 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") // Add the Smithy TypeScript code generator dependency - implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.23.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.24.0") // Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy) // implementation("software.amazon.smithy:smithy-model:$smithyVersion") diff --git a/build.gradle.kts b/build.gradle.kts index 0677ae77d3c..d0159e95fe6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.23.0" + version = "0.24.0" } // The root project doesn't produce a JAR.