Skip to content

Commit

Permalink
release: 2.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Feb 20, 2025
1 parent b992d76 commit f611614
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.33.2"
".": "2.34.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 2.34.0 (2025-02-13)

Full Changelog: [v2.33.2...v2.34.0](https://github.com/Modern-Treasury/modern-treasury-node/compare/v2.33.2...v2.34.0)

### Features

* **client:** send `X-Stainless-Timeout` header ([#519](https://github.com/Modern-Treasury/modern-treasury-node/issues/519)) ([d102e21](https://github.com/Modern-Treasury/modern-treasury-node/commit/d102e21ee21d03707f8abe58281234cca61a66a1))


### Bug Fixes

* **client:** fix export map for index exports ([#521](https://github.com/Modern-Treasury/modern-treasury-node/issues/521)) ([f8b0caf](https://github.com/Modern-Treasury/modern-treasury-node/commit/f8b0caf94bc7a2f1af98e1943626acbf2d59cfad))

## 2.33.2 (2025-01-22)

Full Changelog: [v2.33.1...v2.33.2](https://github.com/Modern-Treasury/modern-treasury-node/compare/v2.33.1...v2.33.2)
Expand Down
37 changes: 29 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "modern-treasury",
"version": "2.33.2",
"version": "2.34.0",
"description": "The official TypeScript library for the Modern Treasury API",
"author": "Modern Treasury <[email protected]>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -107,17 +107,38 @@
"default": "./dist/index.mjs"
},
"./*.mjs": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
},
"./*.js": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"default": ["./dist/*.js", "./dist/*/index.js"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"default": [
"./dist/*.js",
"./dist/*/index.js"
]
},
"./*": {
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
"require": ["./dist/*.js", "./dist/*/index.js"],
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"require": [
"./dist/*.js",
"./dist/*/index.js"
],
"default": [
"./dist/*.mjs",
"./dist/*/index.mjs"
]
}
}
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '2.33.2'; // x-release-please-version
export const VERSION = '2.34.0'; // x-release-please-version

0 comments on commit f611614

Please sign in to comment.