Skip to content

Commit eab2f40

Browse files
author
KIvanow
committed
RI-6690 - version bump test
1 parent 3e7390e commit eab2f40

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

.github/build/release-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
HELP="Args:
5-
-v - Semver (2.64.0)
5+
-v - Semver (2.90.0)
66
-d - Build image repository (Ex: -d redisinsight)
77
-r - Target repository (Ex: -r redis/redisinsight)
88
"

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export default {
105105
: true,
106106
buildType: process.env.RI_BUILD_TYPE || 'DOCKER_ON_PREMISE',
107107
appType: process.env.RI_APP_TYPE,
108-
appVersion: process.env.RI_APP_VERSION || '2.64.0',
108+
appVersion: process.env.RI_APP_VERSION || '2.90.0',
109109
requestTimeout: parseInt(process.env.RI_REQUEST_TIMEOUT, 10) || 25000,
110110
excludeRoutes: [],
111111
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: 'Redis Insight Backend API',
77
description: 'Redis Insight Backend API',
8-
version: '2.64.0',
8+
version: '2.90.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.64.0",
3+
"version": "2.90.0",
44
"description": "Redis Insight API",
55
"private": true,
66
"author": {

redisinsight/desktop/src/lib/window/window.handlers.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ export const initWindowIPCHandlers = () => {
110110
})
111111
})
112112
ipcMain.handle(IpcInvokeEvent.appRestart, async () => {
113-
setImmediate(() => {
114-
quitAndInstallUpdate()
115-
})
113+
quitAndInstallUpdate()
116114
})
117115
}

redisinsight/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"appName": "Redis Insight",
44
"productName": "RedisInsight",
55
"private": true,
6-
"version": "2.64.0",
6+
"version": "2.90.0",
77
"description": "Redis Insight",
88
"main": "./dist/main/main.js",
99
"author": {

0 commit comments

Comments
 (0)