diff --git a/codegen/CHANGELOG.md b/codegen/CHANGELOG.md index 8c26cddf86d2..56a8485dfb55 100644 --- a/codegen/CHANGELOG.md +++ b/codegen/CHANGELOG.md @@ -1,5 +1,19 @@ # Smithy AWS Typescript Codegen Changelog +## 0.8.0 (2021-11-23) + +### Features + +* Updated EndpointGenerator to merge variants from partition defaults and service defaults using tags as unique key. ([#2989](https://github.com/aws/aws-sdk-js-v3/pull/2989), [#2990](https://github.com/aws/aws-sdk-js-v3/pull/2990), [#3044](https://github.com/aws/aws-sdk-js-v3/pull/3044)) +* Centralized Smithy version for Smithy dependencies including Smithy CLI. ([#3011](https://github.com/aws/aws-sdk-js-v3/pull/3011), [#3054](https://github.com/aws/aws-sdk-js-v3/pull/3054)) +* Updated Smithy version to `1.14.x`. ([#3053](https://github.com/aws/aws-sdk-js-v3/pull/3053)) + +## 0.7.1 (2021-11-04) + +### Bug Fixes + +* Fixed generator to not rely on unreleased features. + ## 0.7.0 (2021-11-03) ### Features diff --git a/codegen/build.gradle.kts b/codegen/build.gradle.kts index 92481cdc64e0..ccf472b1f0b9 100644 --- a/codegen/build.gradle.kts +++ b/codegen/build.gradle.kts @@ -28,7 +28,7 @@ allprojects { mavenCentral() } group = "software.amazon.smithy.typescript" - version = "0.7.0" + version = "0.8.0" } extra["smithyVersion"] = "[1.14.0,1.15.0[" diff --git a/codegen/smithy-aws-typescript-codegen/build.gradle.kts b/codegen/smithy-aws-typescript-codegen/build.gradle.kts index 6801aae8a634..d2a2717de174 100644 --- a/codegen/smithy-aws-typescript-codegen/build.gradle.kts +++ b/codegen/smithy-aws-typescript-codegen/build.gradle.kts @@ -36,7 +36,7 @@ dependencies { api("software.amazon.smithy:smithy-aws-iam-traits:${rootProject.extra["smithyVersion"]}") api("software.amazon.smithy:smithy-protocol-test-traits:${rootProject.extra["smithyVersion"]}") api("software.amazon.smithy:smithy-model:${rootProject.extra["smithyVersion"]}") - api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.7.0") + api("software.amazon.smithy.typescript:smithy-typescript-codegen:0.8.0") } tasks.register("set-aws-sdk-versions") {