v1.8.2-beta.2

This commit is contained in:
John Kleinschmidt 2017-11-06 16:11:34 -05:00
parent 083b6e2bbe
commit 5383b4809f
4 changed files with 5 additions and 5 deletions

View file

@ -56,8 +56,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,8,2,1 FILEVERSION 1,8,2,2
PRODUCTVERSION 1,8,2,1 PRODUCTVERSION 1,8,2,2
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L

View file

@ -4,7 +4,7 @@
'product_name%': 'Electron', 'product_name%': 'Electron',
'company_name%': 'GitHub, Inc', 'company_name%': 'GitHub, Inc',
'company_abbr%': 'github', 'company_abbr%': 'github',
'version%': '1.8.2-beta.1', 'version%': '1.8.2-beta.2',
'js2c_input_dir': '<(SHARED_INTERMEDIATE_DIR)/js2c', 'js2c_input_dir': '<(SHARED_INTERMEDIATE_DIR)/js2c',
}, },
'includes': [ 'includes': [

View file

@ -1,6 +1,6 @@
{ {
"name": "electron", "name": "electron",
"version": "1.8.2-beta.1", "version": "1.8.2-beta.2",
"repository": "https://github.com/electron/electron", "repository": "https://github.com/electron/electron",
"description": "Build cross platform desktop apps with JavaScript, HTML, and CSS", "description": "Build cross platform desktop apps with JavaScript, HTML, and CSS",
"devDependencies": { "devDependencies": {

View file

@ -121,7 +121,7 @@ async function createRelease (branchToTarget, isBeta) {
let drafts = releases.data.filter(release => release.draft) let drafts = releases.data.filter(release => release.draft)
if (drafts.length > 0) { if (drafts.length > 0) {
console.log(`${fail} Aborting because draft release for console.log(`${fail} Aborting because draft release for
${drafts[0].release.tag_name} already exists.`) ${drafts[0].tag_name} already exists.`)
process.exit(1) process.exit(1)
} }
console.log(`${pass} A draft release does not exist; creating one.`) console.log(`${pass} A draft release does not exist; creating one.`)