diff --git a/CHANGELOG.md b/CHANGELOG.md index 5efb9b47b5f..b9be621de58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Smithy Typescript Codegen Changelog +## 0.36.1 (2025-10-06) + +### Features + +- Added 'pnpm' to 'PackageManager' ([#1658](https://github.com/smithy-lang/smithy-typescript/pull/1658)) + +### Bug Fixes + +- Fixed CBOR eventstream codegen ([#1731](https://github.com/smithy-lang/smithy-typescript/pull/1731)) + ## 0.36.0 (2025-09-30) ### Features diff --git a/README.md b/README.md index c32e2fd3092..a80ace3a49c 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.36.0"] + "dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.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.36.0") + implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.36.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 0671818d0c5..43f898d767b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { allprojects { group = "software.amazon.smithy.typescript" - version = "0.36.0" + version = "0.36.1" } // The root project doesn't produce a JAR.