Skip to content

Commit e4fcecc

Browse files
release: 0.20.1 (#225)
Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: David Meadows <[email protected]>
1 parent d9c22f0 commit e4fcecc

File tree

6 files changed

+20
-4
lines changed

6 files changed

+20
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010

1111
jobs:
1212
lint:
13+
timeout-minutes: 10
1314
name: lint
1415
runs-on: ubuntu-latest
1516
steps:
@@ -27,6 +28,7 @@ jobs:
2728
run: ./scripts/lint
2829

2930
build:
31+
timeout-minutes: 5
3032
name: build
3133
runs-on: ubuntu-latest
3234
permissions:
@@ -61,6 +63,7 @@ jobs:
6163
SHA: ${{ github.sha }}
6264
run: ./scripts/utils/upload-artifact.sh
6365
test:
66+
timeout-minutes: 10
6467
name: test
6568
runs-on: ubuntu-latest
6669
steps:

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.20.0"
2+
".": "0.20.1"
33
}

CHANGELOG.md

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

3+
## 0.20.1 (2025-04-23)
4+
5+
Full Changelog: [v0.20.0...v0.20.1](https://github.com/groq/groq-typescript/compare/v0.20.0...v0.20.1)
6+
7+
### Bug Fixes
8+
9+
* **docs:** correct chatCompletion response exmaple in README ([399ccf5](https://github.com/groq/groq-typescript/commit/399ccf55ec7c0847bee32c9e214eecea5b8151c6))
10+
11+
12+
### Chores
13+
14+
* **ci:** add timeout thresholds for CI jobs ([fc2c33e](https://github.com/groq/groq-typescript/commit/fc2c33ef10bb3796501831a7e36c73befadc8306))
15+
316
## 0.20.0 (2025-04-22)
417

518
Full Changelog: [v0.19.0...v0.20.0](https://github.com/groq/groq-typescript/compare/v0.19.0...v0.20.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function main() {
3232
model: 'llama3-8b-8192',
3333
});
3434

35-
console.log(chatCompletion['choices[0].message.content']);
35+
console.log(chatCompletion[choices[0].message.content]);
3636
}
3737

3838
main();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "groq-sdk",
3-
"version": "0.20.0",
3+
"version": "0.20.1",
44
"description": "The official TypeScript library for the Groq API",
55
"author": "Groq <[email protected]>",
66
"types": "dist/index.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.20.0'; // x-release-please-version
1+
export const VERSION = '0.20.1'; // x-release-please-version

0 commit comments

Comments
 (0)