From 3a5f57fd2bab47ccc814d25028c472e2765b9980 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Sat, 10 Aug 2024 08:32:27 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20v0.7.4=20(#3603)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- Dockerfile.multi | 2 +- api/package.json | 2 +- client/package.json | 2 +- e2e/jestSetup.js | 2 +- index.html | 2 +- package-lock.json | 8 ++++---- package.json | 2 +- packages/data-provider/package.json | 2 +- packages/data-provider/src/config.ts | 2 +- prettier.config.js | 2 +- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1ace3200d..3a8f3484b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# v0.7.3 +# v0.7.4 # Base node image FROM node:20-alpine AS node diff --git a/Dockerfile.multi b/Dockerfile.multi index d8fe9d951..b4596daa0 100644 --- a/Dockerfile.multi +++ b/Dockerfile.multi @@ -1,4 +1,4 @@ -# v0.7.3 +# v0.7.4 # Build API, Client and Data Provider FROM node:20-alpine AS base diff --git a/api/package.json b/api/package.json index 75502baf2..1b42197cd 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/backend", - "version": "0.7.4-rc1", + "version": "0.7.4", "description": "", "scripts": { "start": "echo 'please run this from the root directory'", diff --git a/client/package.json b/client/package.json index bccc58196..2693ada9f 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/frontend", - "version": "0.7.4-rc1", + "version": "0.7.4", "description": "", "type": "module", "scripts": { diff --git a/e2e/jestSetup.js b/e2e/jestSetup.js index c5c27fada..7f5826c4b 100644 --- a/e2e/jestSetup.js +++ b/e2e/jestSetup.js @@ -1,3 +1,3 @@ -// v0.7.3 +// v0.7.4 // See .env.test.example for an example of the '.env.test' file. require('dotenv').config({ path: './e2e/.env.test' }); diff --git a/index.html b/index.html index 361b544af..1cd44b4e9 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ - + diff --git a/package-lock.json b/package-lock.json index 9ef8ea5b1..dc927591d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "LibreChat", - "version": "0.7.4-rc1", + "version": "0.7.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "LibreChat", - "version": "0.7.4-rc1", + "version": "0.7.4", "license": "ISC", "workspaces": [ "api", @@ -40,7 +40,7 @@ }, "api": { "name": "@librechat/backend", - "version": "0.7.4-rc1", + "version": "0.7.4", "license": "ISC", "dependencies": { "@anthropic-ai/sdk": "^0.16.1", @@ -1114,7 +1114,7 @@ }, "client": { "name": "@librechat/frontend", - "version": "0.7.4-rc1", + "version": "0.7.4", "license": "ISC", "dependencies": { "@ariakit/react": "^0.4.5", diff --git a/package.json b/package.json index d753e6607..56b56eb8b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LibreChat", - "version": "0.7.4-rc1", + "version": "0.7.4", "description": "", "workspaces": [ "api", diff --git a/packages/data-provider/package.json b/packages/data-provider/package.json index 2d5bf06f9..10d973e75 100644 --- a/packages/data-provider/package.json +++ b/packages/data-provider/package.json @@ -1,6 +1,6 @@ { "name": "librechat-data-provider", - "version": "0.7.4.0", + "version": "0.7.4.1", "description": "data services for librechat apps", "main": "dist/index.js", "module": "dist/index.es.js", diff --git a/packages/data-provider/src/config.ts b/packages/data-provider/src/config.ts index af5f20754..2dc7ad3f2 100644 --- a/packages/data-provider/src/config.ts +++ b/packages/data-provider/src/config.ts @@ -940,7 +940,7 @@ export enum TTSProviders { /** Enum for app-wide constants */ export enum Constants { /** Key for the app's version. */ - VERSION = 'v0.7.4-rc1', + VERSION = 'v0.7.4', /** Key for the Custom Config's version (librechat.yaml). */ CONFIG_VERSION = '1.1.5', /** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */ diff --git a/prettier.config.js b/prettier.config.js index 1fea794bc..fb5099296 100644 --- a/prettier.config.js +++ b/prettier.config.js @@ -1,4 +1,4 @@ -// v0.7.3 +// v0.7.4 module.exports = { tailwindConfig: './client/tailwind.config.cjs', printWidth: 100,