diff --git a/atom/browser/resources/mac/Info.plist b/atom/browser/resources/mac/Info.plist
index 28eddfa61235..7fda39ce35e8 100644
--- a/atom/browser/resources/mac/Info.plist
+++ b/atom/browser/resources/mac/Info.plist
@@ -17,9 +17,9 @@
CFBundleIconFile
electron.icns
CFBundleVersion
- 1.2.1
+ 1.2.2
CFBundleShortVersionString
- 1.2.1
+ 1.2.2
LSApplicationCategoryType
public.app-category.developer-tools
LSMinimumSystemVersion
diff --git a/atom/browser/resources/win/atom.rc b/atom/browser/resources/win/atom.rc
index 7e386d319d9d..b82f28a47899 100644
--- a/atom/browser/resources/win/atom.rc
+++ b/atom/browser/resources/win/atom.rc
@@ -56,8 +56,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,2,1,0
- PRODUCTVERSION 1,2,1,0
+ FILEVERSION 1,2,2,0
+ PRODUCTVERSION 1,2,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "GitHub, Inc."
VALUE "FileDescription", "Electron"
- VALUE "FileVersion", "1.2.1"
+ VALUE "FileVersion", "1.2.2"
VALUE "InternalName", "electron.exe"
VALUE "LegalCopyright", "Copyright (C) 2015 GitHub, Inc. All rights reserved."
VALUE "OriginalFilename", "electron.exe"
VALUE "ProductName", "Electron"
- VALUE "ProductVersion", "1.2.1"
+ VALUE "ProductVersion", "1.2.2"
VALUE "SquirrelAwareVersion", "1"
END
END
diff --git a/atom/common/atom_version.h b/atom/common/atom_version.h
index 455bfacbfc11..fc11a68b2915 100644
--- a/atom/common/atom_version.h
+++ b/atom/common/atom_version.h
@@ -7,7 +7,7 @@
#define ATOM_MAJOR_VERSION 1
#define ATOM_MINOR_VERSION 2
-#define ATOM_PATCH_VERSION 1
+#define ATOM_PATCH_VERSION 2
#define ATOM_VERSION_IS_RELEASE 1
diff --git a/electron.gyp b/electron.gyp
index 055cb0c209ac..994cdcea899b 100644
--- a/electron.gyp
+++ b/electron.gyp
@@ -4,7 +4,7 @@
'product_name%': 'Electron',
'company_name%': 'GitHub, Inc',
'company_abbr%': 'github',
- 'version%': '1.2.1',
+ 'version%': '1.2.2',
},
'includes': [
'filenames.gypi',
diff --git a/package.json b/package.json
index 6f873786e3f0..824cae71107b 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "electron",
- "version": "1.2.1",
+ "version": "1.2.2",
"devDependencies": {
"asar": "^0.11.0",
"request": "*",