Skip to content

Commit 5e634ad

Browse files
authored
Merge pull request #1875 from RedisInsight/fe/bugfix/update-versions-2-22
update version from 2.20 to 2.22
2 parents ca2f7ed + 5b16da3 commit 5e634ad

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

electron-builder.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"type": "distribution",
3838
"hardenedRuntime": true,
3939
"darkModeSupport": true,
40-
"bundleVersion": "0.0.57",
40+
"bundleVersion": "1",
4141
"icon": "resources/icon.icns",
4242
"artifactName": "${productName}-${os}-${arch}.${ext}",
4343
"entitlements": "resources/entitlements.mac.plist",

redisinsight/about-panel.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
export default {
99
applicationName: 'RedisInsight-v2',
1010
applicationVersion:
11-
`${app.getVersion() || '2.20.0'}${process.env.NODE_ENV !== 'production' && `-dev-${process.getCreationTime()}`}`,
11+
`${app.getVersion() || '2.22.0'}${process.env.NODE_ENV !== 'production' && `-dev-${process.getCreationTime()}`}`,
1212
copyright: `Copyright © ${new Date().getFullYear()} Redis Ltd.`,
1313
iconPath: ICON_PATH,
1414
};

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default {
5656
tlsKey: process.env.SERVER_TLS_KEY,
5757
staticContent: !!process.env.SERVER_STATIC_CONTENT || false,
5858
buildType: process.env.BUILD_TYPE || 'ELECTRON',
59-
appVersion: process.env.APP_VERSION || '2.20.0',
59+
appVersion: process.env.APP_VERSION || '2.22.0',
6060
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
6161
excludeRoutes: [],
6262
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.20.0',
8+
version: '2.22.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.20.0",
5+
"version": "2.22.0",
66
"description": "RedisInsight",
77
"main": "./main.prod.js",
88
"author": {

0 commit comments

Comments
 (0)