From 92d1eb5aeced83c13ae07c300891072868972a52 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 22:20:28 +0000 Subject: [PATCH] release: 2.0.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 38 +++++++++++++++++++++++++++++++++++ package.json | 2 +- src/version.ts | 2 +- 4 files changed, 41 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index dd8fde7..895bf0e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.5.0" + ".": "2.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 024b46d..e3d217e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,43 @@ # Changelog +## 2.0.0 (2025-01-29) + +Full Changelog: [v1.5.0...v2.0.0](https://github.com/writer/writer-node/compare/v1.5.0...v2.0.0) + +### ⚠ BREAKING CHANGES + +* **api:** define chat completion models ([#137](https://github.com/writer/writer-node/issues/137)) + +### Features + +* **api:** add async jobs and graph association ([#144](https://github.com/writer/writer-node/issues/144)) ([ed3a32c](https://github.com/writer/writer-node/commit/ed3a32c974d1a7ebac1d1583c1b36e45fd038dd4)) +* **api:** define chat completion models ([#137](https://github.com/writer/writer-node/issues/137)) ([653617c](https://github.com/writer/writer-node/commit/653617c4a5dd815f02b931f8af92a6b95e1af20d)) +* **api:** update application jobs pagination response ([#146](https://github.com/writer/writer-node/issues/146)) ([cad81b6](https://github.com/writer/writer-node/commit/cad81b6e6c1addcb64c843bb21de181a4d3cdcac)) + + +### Bug Fixes + +* **client:** normalize method ([#133](https://github.com/writer/writer-node/issues/133)) ([b3df889](https://github.com/writer/writer-node/commit/b3df889ae6bbe7b912559831cceeb6d6405ca6ff)) +* send correct Accept header for certain endpoints ([#139](https://github.com/writer/writer-node/issues/139)) ([7b7bc98](https://github.com/writer/writer-node/commit/7b7bc98e9c77ac0d7502f903e1db73bdca0a0353)) + + +### Chores + +* **internal:** add test ([#142](https://github.com/writer/writer-node/issues/142)) ([ff0f7bd](https://github.com/writer/writer-node/commit/ff0f7bda00529616ef18eb03b79d2ebb8a2ef080)) +* **internal:** codegen related update ([#127](https://github.com/writer/writer-node/issues/127)) ([43383eb](https://github.com/writer/writer-node/commit/43383eb9ffcb5342cb5cea6c707288c310ed1445)) +* **internal:** codegen related update ([#135](https://github.com/writer/writer-node/issues/135)) ([d613cc5](https://github.com/writer/writer-node/commit/d613cc57ae2bf017b81c8f2b26af1d64a73c80e8)) +* **internal:** codegen related update ([#136](https://github.com/writer/writer-node/issues/136)) ([2d540cd](https://github.com/writer/writer-node/commit/2d540cd47c140e9a99f20d8512a8ef8004811554)) +* **internal:** fix some typos ([#132](https://github.com/writer/writer-node/issues/132)) ([49c6345](https://github.com/writer/writer-node/commit/49c6345296305e8df2335916c7db7f9d27a15999)) +* **internal:** minor restructuring ([#143](https://github.com/writer/writer-node/issues/143)) ([8c0c78d](https://github.com/writer/writer-node/commit/8c0c78de952ac755f882ff43b343ab24d2ec9bf9)) +* **types:** add `| undefined` to client options properties ([#141](https://github.com/writer/writer-node/issues/141)) ([2d0d033](https://github.com/writer/writer-node/commit/2d0d033a5fddb9f1629a981c01b9aa599b77ce8a)) + + +### Documentation + +* **api:** updates to API spec ([#140](https://github.com/writer/writer-node/issues/140)) ([cb1848a](https://github.com/writer/writer-node/commit/cb1848aee95765b826be6977e6234f8bb4870c2d)) +* **api:** updates to API spec ([#145](https://github.com/writer/writer-node/issues/145)) ([6a8c60c](https://github.com/writer/writer-node/commit/6a8c60caa7ceab46ac1690ce1ac14ca8d8555b83)) +* minor formatting changes ([#134](https://github.com/writer/writer-node/issues/134)) ([be32bd6](https://github.com/writer/writer-node/commit/be32bd6d91850337baa9a10742376c620199322e)) + ## 1.5.0 (2024-12-11) Full Changelog: [v1.4.0...v1.5.0](https://github.com/writer/writer-node/compare/v1.4.0...v1.5.0) diff --git a/package.json b/package.json index 1e0f035..9ff1e12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "writer-sdk", - "version": "1.5.0", + "version": "2.0.0", "description": "The official TypeScript library for the Writer API", "author": "Writer ", "types": "dist/index.d.ts", diff --git a/src/version.ts b/src/version.ts index e514fa0..d66dc1b 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '1.5.0'; // x-release-please-version +export const VERSION = '2.0.0'; // x-release-please-version