Skip to content

Commit 7b79310

Browse files
authored
Merge pull request #2133 from RedisInsight/feature/main-to-release-2-26
Feature/main upd for release 2.26
2 parents 5a16d71 + 0718799 commit 7b79310

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
@@ -33,7 +33,7 @@
3333
"type": "distribution",
3434
"hardenedRuntime": true,
3535
"darkModeSupport": true,
36-
"bundleVersion": "9",
36+
"bundleVersion": "10",
3737
"icon": "resources/icon.icns",
3838
"artifactName": "${productName}-${os}-${arch}.${ext}",
3939
"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.24.0'}${process.env.NODE_ENV !== 'production' ? `-dev-${process.getCreationTime()}` : ''}`,
11+
`${app.getVersion() || '2.26.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
@@ -58,7 +58,7 @@ export default {
5858
tlsKey: process.env.SERVER_TLS_KEY,
5959
staticContent: !!process.env.SERVER_STATIC_CONTENT || false,
6060
buildType: process.env.BUILD_TYPE || 'ELECTRON',
61-
appVersion: process.env.APP_VERSION || '2.24.0',
61+
appVersion: process.env.APP_VERSION || '2.26.0',
6262
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
6363
excludeRoutes: [],
6464
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.24.0',
8+
version: '2.26.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.24.0",
5+
"version": "2.26.0",
66
"description": "RedisInsight",
77
"main": "./main.prod.js",
88
"author": {

0 commit comments

Comments
 (0)