Skip to content

Commit 3a5f57f

Browse files
authored
✨ v0.7.4 (#3603)
1 parent 22c8b6f commit 3a5f57f

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.3
1+
# v0.7.4
22

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

Dockerfile.multi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.3
1+
# v0.7.4
22

33
# Build API, Client and Data Provider
44
FROM node:20-alpine AS base

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/backend",
3-
"version": "0.7.4-rc1",
3+
"version": "0.7.4",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/frontend",
3-
"version": "0.7.4-rc1",
3+
"version": "0.7.4",
44
"description": "",
55
"type": "module",
66
"scripts": {

e2e/jestSetup.js

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

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- v0.7.3 -->
1+
<!-- v0.7.4 -->
22
<!DOCTYPE html>
33
<html>
44
<head>

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LibreChat",
3-
"version": "0.7.4-rc1",
3+
"version": "0.7.4",
44
"description": "",
55
"workspaces": [
66
"api",

packages/data-provider/package.json

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

packages/data-provider/src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ export enum TTSProviders {
940940
/** Enum for app-wide constants */
941941
export enum Constants {
942942
/** Key for the app's version. */
943-
VERSION = 'v0.7.4-rc1',
943+
VERSION = 'v0.7.4',
944944
/** Key for the Custom Config's version (librechat.yaml). */
945945
CONFIG_VERSION = '1.1.5',
946946
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */

prettier.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// v0.7.3
1+
// v0.7.4
22
module.exports = {
33
tailwindConfig: './client/tailwind.config.cjs',
44
printWidth: 100,

0 commit comments

Comments
 (0)