From f04521d29854c25667ddec938b23f43eac8d1527 Mon Sep 17 00:00:00 2001 From: Josh Miller <31908788+truemiller@users.noreply.github.com> Date: Thu, 29 Aug 2024 16:33:50 +0100 Subject: [PATCH] fix: rollback install.js from 120, as it will conflict with Windows release candidate --- electron/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/install.js b/electron/install.js index 85cd688c6..861bf44ed 100644 --- a/electron/install.js +++ b/electron/install.js @@ -14,7 +14,7 @@ const { paths } = require('./constants'); * - use "" (nothing as a suffix) for latest release candidate, for example "0.1.0rc26" * - use "alpha" for alpha release, for example "0.1.0rc26-alpha" */ -const OlasMiddlewareVersion = '0.1.0rc121'; +const OlasMiddlewareVersion = '0.1.0rc120'; const path = require('path'); const { app } = require('electron');