From 1474ebc8bc0035b789c7728be01811d37c7d93d1 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sun, 11 Apr 2021 20:47:16 -0400 Subject: [PATCH] Bump to Electron 12.0.2 with Chrome 89.0.4389.90 See https://github.com/electron/electron/releases/tag/v12.0.2 --- src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 62cdaf1..aef1488 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,8 +3,8 @@ import * as path from 'path'; export const DEFAULT_APP_NAME = 'APP'; // Update both together, and update app / package.json / devDeps / electron -export const DEFAULT_ELECTRON_VERSION = '12.0.1'; -export const DEFAULT_CHROME_VERSION = '89.0.4389.82'; +export const DEFAULT_ELECTRON_VERSION = '12.0.2'; +export const DEFAULT_CHROME_VERSION = '89.0.4389.90'; export const ELECTRON_MAJOR_VERSION = parseInt( DEFAULT_ELECTRON_VERSION.split('.')[0],