Skip to content

Commit 9ffaf9a

Browse files
committed
release 2.32.0
1 parent 629956c commit 9ffaf9a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default {
6161
tlsKey: process.env.SERVER_TLS_KEY,
6262
staticContent: !!process.env.SERVER_STATIC_CONTENT || false,
6363
buildType: process.env.BUILD_TYPE || 'ELECTRON',
64-
appVersion: process.env.APP_VERSION || '2.30.0',
64+
appVersion: process.env.APP_VERSION || '2.32.0',
6565
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
6666
excludeRoutes: [],
6767
excludeAuthRoutes: [],

redisinsight/api/config/swagger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const SWAGGER_CONFIG: Omit<OpenAPIObject, 'paths'> = {
55
info: {
66
title: 'RedisInsight Backend API',
77
description: 'RedisInsight Backend API',
8-
version: '2.30.0',
8+
version: '2.32.0',
99
},
1010
tags: [],
1111
};

redisinsight/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redisinsight-api",
3-
"version": "2.30.0",
3+
"version": "2.32.0",
44
"description": "RedisInsight API",
55
"private": true,
66
"author": {

redisinsight/desktop/src/lib/aboutPanel/aboutPanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const ICON_PATH = app.isPackaged
88

99
export const AboutPanelOptions = {
1010
applicationName: 'RedisInsight-v2',
11-
applicationVersion: `${app.getVersion() || '2.30.0'}${
11+
applicationVersion: `${app.getVersion() || '2.32.0'}${
1212
!config.isProduction ? `-dev-${process.getCreationTime()}` : ''
1313
}`,
1414
copyright: `Copyright © ${new Date().getFullYear()} Redis Ltd.`,

redisinsight/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "redisinsight",
33
"productName": "RedisInsight",
44
"private": true,
5-
"version": "2.30.0",
5+
"version": "2.32.0",
66
"description": "RedisInsight",
77
"main": "./dist/main/main.js",
88
"author": {

0 commit comments

Comments
 (0)