Skip to content

Commit 0513821

Browse files
committed
update app version to 2.20.0
1 parent 4135372 commit 0513821

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

redisinsight/about-panel.ts

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

88
export default {
99
applicationName: 'RedisInsight-v2',
10-
applicationVersion: app.getVersion() || '2.2.0',
10+
applicationVersion: app.getVersion() || '2.20.0',
1111
copyright: `Copyright © ${new Date().getFullYear()} Redis Ltd.`,
1212
iconPath: ICON_PATH,
1313
};

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export default {
5454
tlsKey: process.env.SERVER_TLS_KEY,
5555
staticContent: !!process.env.SERVER_STATIC_CONTENT || false,
5656
buildType: process.env.BUILD_TYPE || 'ELECTRON',
57-
appVersion: process.env.APP_VERSION || '2.0.0',
57+
appVersion: process.env.APP_VERSION || '2.20.0',
5858
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
5959
excludeRoutes: [],
6060
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.0.0',
8+
version: '2.20.0',
99
},
1010
tags: [],
1111
};

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.18.0",
5+
"version": "2.20.0",
66
"description": "RedisInsight",
77
"main": "./main.prod.js",
88
"author": {

0 commit comments

Comments
 (0)