Skip to content

Commit 7b82c53

Browse files
authored
release version v0.39.0 (#1802)
1 parent f9285c3 commit 7b82c53

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Smithy Typescript Codegen Changelog
22

3+
## 0.39.0 (2025-12-05)
4+
5+
### Features
6+
7+
- added type import API for TypeScriptWriter ([#1786](https://github.com/smithy-lang/smithy-typescript/pull/1786))
8+
- added `generateIndexTests` setting for generation of optional API surface tests ([#1789](https://github.com/smithy-lang/smithy-typescript/pull/1789))
9+
- generate well-formatted TypeScript source code ([#1780](https://github.com/smithy-lang/smithy-typescript/pull/1780))
10+
11+
### Chores
12+
13+
- reduced `info` level logging output.
14+
To restore previous logging output, use the `fine` logging level. ([#1796](https://github.com/smithy-lang/smithy-typescript/pull/1796))
15+
316
## 0.38.0 (2025-11-20)
417

518
### Features

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To add a minimal `typescript-client-codegen` plugin, add the following to `smith
4646
"sources": ["models"],
4747
// Add the Smithy TypeScript code generator dependency
4848
"maven": {
49-
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.38.0"]
49+
"dependencies": ["software.amazon.smithy.typescript:smithy-typescript-codegen:0.39.0"]
5050
},
5151
"plugins": {
5252
// Add the Smithy TypeScript client plugin
@@ -139,7 +139,7 @@ dependencies {
139139
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
140140

141141
// Add the Smithy TypeScript code generator dependency
142-
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.38.0")
142+
implementation("software.amazon.smithy.typescript:smithy-typescript-codegen:0.39.0")
143143

144144
// Uncomment below to add various smithy dependencies (see full list of smithy dependencies in https://github.com/awslabs/smithy)
145145
// implementation("software.amazon.smithy:smithy-model:$smithyVersion")

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ plugins {
2828

2929
allprojects {
3030
group = "software.amazon.smithy.typescript"
31-
version = "0.38.0"
31+
version = "0.39.0"
3232
}
3333

3434
// The root project doesn't produce a JAR.

0 commit comments

Comments
 (0)