diff --git a/atom.gyp b/atom.gyp
index eb4302d74c..ca2d6bf91a 100644
--- a/atom.gyp
+++ b/atom.gyp
@@ -4,7 +4,7 @@
'product_name%': 'Electron',
'company_name%': 'GitHub, Inc',
'company_abbr%': 'github',
- 'version%': '0.36.2',
+ 'version%': '0.36.3',
},
'includes': [
'filenames.gypi',
diff --git a/atom/browser/resources/mac/Info.plist b/atom/browser/resources/mac/Info.plist
index 2f321fa8fc..105c034d25 100644
--- a/atom/browser/resources/mac/Info.plist
+++ b/atom/browser/resources/mac/Info.plist
@@ -17,9 +17,9 @@
CFBundleIconFile
atom.icns
CFBundleVersion
- 0.36.2
+ 0.36.3
CFBundleShortVersionString
- 0.36.2
+ 0.36.3
LSApplicationCategoryType
public.app-category.developer-tools
LSMinimumSystemVersion
diff --git a/atom/browser/resources/win/atom.rc b/atom/browser/resources/win/atom.rc
index 225d910bc3..676b503fd3 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 0,36,2,0
- PRODUCTVERSION 0,36,2,0
+ FILEVERSION 0,36,3,0
+ PRODUCTVERSION 0,36,3,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "GitHub, Inc."
VALUE "FileDescription", "Electron"
- VALUE "FileVersion", "0.36.2"
+ VALUE "FileVersion", "0.36.3"
VALUE "InternalName", "electron.exe"
VALUE "LegalCopyright", "Copyright (C) 2015 GitHub, Inc. All rights reserved."
VALUE "OriginalFilename", "electron.exe"
VALUE "ProductName", "Electron"
- VALUE "ProductVersion", "0.36.2"
+ VALUE "ProductVersion", "0.36.3"
VALUE "SquirrelAwareVersion", "1"
END
END
diff --git a/atom/common/atom_version.h b/atom/common/atom_version.h
index 9ad405faeb..55b5a3a402 100644
--- a/atom/common/atom_version.h
+++ b/atom/common/atom_version.h
@@ -7,7 +7,7 @@
#define ATOM_MAJOR_VERSION 0
#define ATOM_MINOR_VERSION 36
-#define ATOM_PATCH_VERSION 2
+#define ATOM_PATCH_VERSION 3
#define ATOM_VERSION_IS_RELEASE 1
diff --git a/package.json b/package.json
index f7202f28d6..546be7dd52 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "electron",
- "version": "0.36.2",
+ "version": "0.36.3",
"devDependencies": {
"asar": "^0.9.0",
"coffee-script": "^1.9.2",