From 8e0bb2eda09eb1cb02ecd174a6c5e5d514ef729f Mon Sep 17 00:00:00 2001 From: Brian Clifton Date: Thu, 20 Apr 2017 08:19:57 -0700 Subject: [PATCH] Update to muon 2.58.2 Fixes https://github.com/brave/browser-laptop/issues/8353 Auditors: @bbondy --- .npmrc | 2 +- CHANGELOG.md | 4 ++-- package.json | 2 +- tools/cibuild.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.npmrc b/.npmrc index b1ede27a0a4..73923cc7bf3 100644 --- a/.npmrc +++ b/.npmrc @@ -1,4 +1,4 @@ runtime = node target_arch = x64 -brave_electron_version = 2.57.10 +brave_electron_version = 2.58.2 chromedriver_version = 2.27 diff --git a/CHANGELOG.md b/CHANGELOG.md index e49dc24ada9..9629fba784f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog -## [0.14.2](https://github.com/brave/browser-laptop/releases/v0.14.2dev) - - Update muon to 2.57.10. ([#8161](https://github.com/brave/browser-laptop/issues/8161)) +## [0.15.0](https://github.com/brave/browser-laptop/releases/v0.15.0dev) + - Update muon to 2.58.2. ([#8161](https://github.com/brave/browser-laptop/issues/8161)) ## [0.14.1](https://github.com/brave/browser-laptop/releases/v0.14.1dev) - Fixed paste not detected issue with context menus. ([#8000](https://github.com/brave/browser-laptop/issues/8000)) diff --git a/package.json b/package.json index 435244abf21..6299083d42a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "brave", - "version": "0.14.2", + "version": "0.15.0", "description": "Brave laptop and desktop browser", "main": "./app/index.js", "config": { diff --git a/tools/cibuild.py b/tools/cibuild.py index e331af7686f..c0dc4db76f5 100755 --- a/tools/cibuild.py +++ b/tools/cibuild.py @@ -4,7 +4,7 @@ import subprocess import sys import os.path -MUON_VERSION = '2.57.10' +MUON_VERSION = '2.58.2' CHROMEDRIVER_VERSION = '2.27' SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) TARGET_ARCH= os.environ['TARGET_ARCH'] if os.environ.has_key('TARGET_ARCH') else 'x64'