From a4a470c19b9baf5d12b5c733deb4a6931361fafb Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Tue, 30 Sep 2025 18:49:42 +0000 Subject: [PATCH] Bump codegen version to 0.36.0 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77156bfe6c9..5efb9b47b5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Smithy Typescript Codegen Changelog +## 0.36.0 (2025-09-30) + +### Features + +- Upgraded smithy version to 1.62.0 ([#1714](https://github.com/smithy-lang/smithy-typescript/pull/1714)) +- Replaced 'uuid' with '@smithy/uuid' ([#1706](https://github.com/smithy-lang/smithy-typescript/pull/1706)) + ## 0.35.0 (2025-09-18) ### Features diff --git a/README.md b/README.md index 05ea9d7cc33..c32e2fd3092 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.35.0"] + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.0"] }, "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.35.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.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 be4f3720974..0671818d0c5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.35.0" + version = "0.36.0" } // The root project doesn't produce a JAR.