diff --git a/CHANGELOG.md b/CHANGELOG.md index 895cbeef1ea..2cb9515b076 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Smithy Typescript Codegen Changelog +## 0.29.1 (2025-04-24) + +### Chores +- Bumped version to match release of smithy-aws-typescript-codegen + ## 0.29.0 (2025-04-11) ### Features diff --git a/README.md b/README.md index 2fc4a152039..e2d4aceef38 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith "sources": ["models"], // Add the Smithy TypeScript code generator dependency "maven": { - "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.29.0"] + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.29.1"] }, "plugins": { // Add the Smithy TypeScript client plugin @@ -139,7 +139,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.29.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.29.1") // 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 68477106999..41505553887 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.29.0" + version = "0.29.1" } // The root project doesn't produce a JAR.