From fd24cf612f368b1bea3236b263b83ddda078cfd2 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet Date: Wed, 5 Jun 2024 18:13:31 +0200 Subject: [PATCH] Release 0.5.0 --- package.json | 2 +- src/client.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b1583ce..f76159e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@mistralai/mistralai", - "version": "0.4.0", + "version": "0.5.0", "description": "", "author": "bam4d@mistral.ai", "license": "ISC", diff --git a/src/client.js b/src/client.js index c90afbd..5be9e7f 100644 --- a/src/client.js +++ b/src/client.js @@ -1,7 +1,7 @@ import FilesClient from './files.js'; import JobsClient from './jobs.js'; -const VERSION = '0.3.0'; +const VERSION = '0.5.0'; const RETRY_STATUS_CODES = [429, 500, 502, 503, 504]; const ENDPOINT = 'https://api.mistral.ai';