Skip to content

Commit

Permalink
release: 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored Mar 5, 2025
1 parent 41c0772 commit 09a8706
Show file tree
Hide file tree
Showing 4 changed files with 62 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 @@
{
".": "0.13.0"
".": "0.14.0"
}
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## 0.14.0 (2025-03-05)

Full Changelog: [v0.13.0...v0.14.0](https://github.com/togethercomputer/together-typescript/compare/v0.13.0...v0.14.0)

### Features

* **api:** api update ([#136](https://github.com/togethercomputer/together-typescript/issues/136)) ([cd07485](https://github.com/togethercomputer/together-typescript/commit/cd074853348eadc64b21b3cda783a1eae34a23ae))
* **api:** api update ([#138](https://github.com/togethercomputer/together-typescript/issues/138)) ([cd66985](https://github.com/togethercomputer/together-typescript/commit/cd669851bda96a56bc86efa51e7efa3ce2902205))
* **api:** api update ([#140](https://github.com/togethercomputer/together-typescript/issues/140)) ([8888c48](https://github.com/togethercomputer/together-typescript/commit/8888c485bdb83d16cafe049a279c19bd632c9d77))
* **api:** api update ([#143](https://github.com/togethercomputer/together-typescript/issues/143)) ([ff3a2c8](https://github.com/togethercomputer/together-typescript/commit/ff3a2c8f0ac35db9e0a9c867e400ad610d2defac))
* **api:** api update ([#146](https://github.com/togethercomputer/together-typescript/issues/146)) ([41c0772](https://github.com/togethercomputer/together-typescript/commit/41c0772603ec2e0847bddc488cdfe47aa893afa2))
* **client:** send `X-Stainless-Timeout` header ([#137](https://github.com/togethercomputer/together-typescript/issues/137)) ([9f25474](https://github.com/togethercomputer/together-typescript/commit/9f2547457ac4f70312656f63bcfc5b019f8bc3c0))


### Bug Fixes

* **client:** fix export map for index exports ([#141](https://github.com/togethercomputer/together-typescript/issues/141)) ([4d746d0](https://github.com/togethercomputer/together-typescript/commit/4d746d0762cfd523ee3a21872b5201c2d4733422))
* correctly decode multi-byte characters over multiple chunks ([#139](https://github.com/togethercomputer/together-typescript/issues/139)) ([8c047b7](https://github.com/togethercomputer/together-typescript/commit/8c047b72ac932d432ce0d0ea51d666ea78d27e33))
* optimize sse chunk reading off-by-one error ([#142](https://github.com/togethercomputer/together-typescript/issues/142)) ([7f1a4f3](https://github.com/togethercomputer/together-typescript/commit/7f1a4f3f4a141b31907ed63104c42f641f6da6ab))
* **tests:** skip invalid test ([#134](https://github.com/togethercomputer/together-typescript/issues/134)) ([229822f](https://github.com/togethercomputer/together-typescript/commit/229822fa0355888519b037a66752e3518fc82441))


### Chores

* **internal:** fix devcontainers setup ([#144](https://github.com/togethercomputer/together-typescript/issues/144)) ([e9bd176](https://github.com/togethercomputer/together-typescript/commit/e9bd176fa213090ed882028dd66b6a38acd2982f))


### Documentation

* update URLs from stainlessapi.com to stainless.com ([#145](https://github.com/togethercomputer/together-typescript/issues/145)) ([511a9de](https://github.com/togethercomputer/together-typescript/commit/511a9de994cc611b3593412eda385d3e73c01d15))

## 0.13.0 (2025-01-27)

Full Changelog: [v0.12.0...v0.13.0](https://github.com/togethercomputer/together-typescript/compare/v0.12.0...v0.13.0)
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": "together-ai",
"version": "0.13.0",
"version": "0.14.0",
"description": "The official TypeScript library for the Together API",
"author": "Together <[email protected]>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -112,17 +112,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 = '0.13.0'; // x-release-please-version
export const VERSION = '0.14.0'; // x-release-please-version

0 comments on commit 09a8706

Please sign in to comment.