Skip to content

Commit 4a32d74

Browse files
authored
✨ v0.7.2 (#2667)
* v0.7.2 * chore: uninstall hnswlib-node * bump package provider * bump librechat-data-provider in lockfile * README: ross index * chore: center star history
1 parent 2ec821e commit 4a32d74

12 files changed

+36
-20
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.1
1+
# v0.7.2
22

33
# Base node image
44
FROM node:18-alpine3.18 AS node

Dockerfile.multi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.1
1+
# v0.7.2
22

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

README.md

+14-2
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,23 @@ Please consult the breaking changes before updating.
103103

104104
<p align="center">
105105
<a href="https://trendshift.io/repositories/4685" target="_blank"><img src="https://trendshift.io/api/badge/repositories/4685" alt="danny-avila%2FLibreChat | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
106-
</p>
107-
106+
<a
107+
href="https://runacap.com/ross-index/q1-24/"
108+
target="_blank"
109+
rel="noopener"
110+
>
111+
<img
112+
style="width: 260px; height: 56px"
113+
src="https://runacap.com/wp-content/uploads/2024/04/ROSS_badge_white_Q1_2024.svg"
114+
alt="ROSS Index - Fastest Growing Open-Source Startups in Q1 2024 | Runa Capital"
115+
width="260"
116+
height="56"
117+
/>
118+
</a>
108119
<a href="https://star-history.com/#danny-avila/LibreChat&Date">
109120
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=danny-avila/LibreChat&type=Date&theme=dark" onerror="this.src='https://api.star-history.com/svg?repos=danny-avila/LibreChat&type=Date'" />
110121
</a>
122+
</p>
111123

112124
---
113125

api/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/backend",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",
@@ -58,7 +58,6 @@
5858
"firebase": "^10.6.0",
5959
"googleapis": "^126.0.1",
6060
"handlebars": "^4.7.7",
61-
"hnswlib-node": "^1.4.2",
6261
"html": "^1.0.0",
6362
"ioredis": "^5.3.2",
6463
"js-yaml": "^4.1.0",

client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/frontend",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
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.1
1+
// v0.7.2
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.1 -->
1+
<!-- v0.7.2 -->
22
<!DOCTYPE html>
33
<html>
44
<head>

package-lock.json

+12-7
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": "0.7.1",
3+
"version": "0.7.2",
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.6.2",
3+
"version": "0.6.3",
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
@@ -675,7 +675,7 @@ export enum SettingsTabValues {
675675
/** Enum for app-wide constants */
676676
export enum Constants {
677677
/** Key for the app's version. */
678-
VERSION = 'v0.7.1',
678+
VERSION = 'v0.7.2',
679679
/** Key for the Custom Config's version (librechat.yaml). */
680680
CONFIG_VERSION = '1.0.9',
681681
/** 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.1
1+
// v0.7.2
22
module.exports = {
33
tailwindConfig: './client/tailwind.config.cjs',
44
printWidth: 100,

0 commit comments

Comments
 (0)