diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7ca613..13708fa 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.0" + ".": "0.7.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index aa3d23e..c10e955 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.7.1 (2024-09-06) + +Full Changelog: [v0.7.0...v0.7.1](https://github.com/groq/groq-typescript/compare/v0.7.0...v0.7.1) + +### Bug Fixes + +* **client:** correct File construction from node-fetch Responses ([#125](https://github.com/groq/groq-typescript/issues/125)) ([4549dbc](https://github.com/groq/groq-typescript/commit/4549dbc1aa38627a44241f16c9c3a530f7b65de7)) + + +### Chores + +* **ci:** install deps via ./script/bootstrap ([#124](https://github.com/groq/groq-typescript/issues/124)) ([ac82a05](https://github.com/groq/groq-typescript/commit/ac82a0592c6ef06ad0fa8fb0e0ab99120170a56f)) +* run tsc as part of lint script ([#122](https://github.com/groq/groq-typescript/issues/122)) ([640809c](https://github.com/groq/groq-typescript/commit/640809c9c58a5772c941982e036daa4f7ddd7766)) + ## 0.7.0 (2024-09-03) Full Changelog: [v0.6.1...v0.7.0](https://github.com/groq/groq-typescript/compare/v0.6.1...v0.7.0) diff --git a/package.json b/package.json index 0d83694..21db4d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "groq-sdk", - "version": "0.7.0", + "version": "0.7.1", "description": "The official TypeScript library for the Groq API", "author": "Groq ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index d9da9f7..5e85c4b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.7.0'; // x-release-please-version +export const VERSION = '0.7.1'; // x-release-please-version