This commit is contained in:
John Kleinschmidt 2017-11-06 16:11:34 -05:00
Родитель 083b6e2bbe
Коммит 5383b4809f
4 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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