Skip to content

Commit 27d31ef

Browse files
authored
Merge pull request #2238 from RedisInsight/bugfix/update-bundle-version
update versions to 2.28
2 parents b6a230c + 564ceba commit 27d31ef

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
@@ -29,7 +29,7 @@
2929
"type": "distribution",
3030
"hardenedRuntime": true,
3131
"darkModeSupport": true,
32-
"bundleVersion": "20",
32+
"bundleVersion": "30",
3333
"icon": "resources/icon.icns",
3434
"artifactName": "${productName}-${os}-${arch}.${ext}",
3535
"entitlements": "resources/entitlements.mac.plist",

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.26.0',
61+
appVersion: process.env.APP_VERSION || '2.28.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.26.0',
8+
version: '2.28.0',
99
},
1010
tags: [],
1111
};

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.26.0'}${
11+
applicationVersion: `${app.getVersion() || '2.28.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.27.0",
5+
"version": "2.28.0",
66
"description": "RedisInsight",
77
"main": "./dist/main/main.js",
88
"author": {

0 commit comments

Comments
 (0)