Skip to content

Commit 600d217

Browse files
authored
✨ v0.7.5 (#4541)
1 parent 3f3b592 commit 600d217

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.5-rc2
1+
# v0.7.5
22

33
# Base node image
44
FROM node:20-alpine AS node

Dockerfile.multi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile.multi
2-
# v0.7.5-rc2
2+
# v0.7.5
33

44
# Base for all builds
55
FROM node:20-alpine AS base

api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/backend",
3-
"version": "v0.7.5-rc2",
3+
"version": "v0.7.5",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",

client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/frontend",
3-
"version": "v0.7.5-rc2",
3+
"version": "v0.7.5",
44
"description": "",
55
"type": "module",
66
"scripts": {

e2e/jestSetup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// v0.7.5-rc2
1+
// v0.7.5
22
// See .env.test.example for an example of the '.env.test' file.
33
require('dotenv').config({ path: './e2e/.env.test' });

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- v0.7.5-rc2 -->
1+
<!-- v0.7.5 -->
22
<!DOCTYPE html>
33
<html>
44
<head>

package-lock.json

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LibreChat",
3-
"version": "v0.7.5-rc2",
3+
"version": "v0.7.5",
44
"description": "",
55
"workspaces": [
66
"api",

packages/data-provider/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "librechat-data-provider",
3-
"version": "0.7.430",
3+
"version": "0.7.5",
44
"description": "data services for librechat apps",
55
"main": "dist/index.js",
66
"module": "dist/index.es.js",

packages/data-provider/src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ export enum TTSProviders {
10731073
/** Enum for app-wide constants */
10741074
export enum Constants {
10751075
/** Key for the app's version. */
1076-
VERSION = 'v0.7.5-rc2',
1076+
VERSION = 'v0.7.5',
10771077
/** Key for the Custom Config's version (librechat.yaml). */
10781078
CONFIG_VERSION = '1.1.7',
10791079
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */

prettier.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// v0.7.5-rc2
1+
// v0.7.5
22
module.exports = {
33
tailwindConfig: './client/tailwind.config.cjs',
44
printWidth: 100,

0 commit comments

Comments
 (0)