diff --git a/atom/browser/resources/mac/Info.plist b/atom/browser/resources/mac/Info.plist
index 7d46960a4656..5eb6079f6c98 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.8
+ 1.3.0
CFBundleShortVersionString
- 1.2.8
+ 1.3.0
LSApplicationCategoryType
public.app-category.developer-tools
LSMinimumSystemVersion
diff --git a/atom/browser/resources/win/atom.rc b/atom/browser/resources/win/atom.rc
index 05a14e9d58ea..0527a33b32e9 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,8,0
- PRODUCTVERSION 1,2,8,0
+ FILEVERSION 1,3,0,0
+ PRODUCTVERSION 1,3,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "GitHub, Inc."
VALUE "FileDescription", "Electron"
- VALUE "FileVersion", "1.2.8"
+ VALUE "FileVersion", "1.3.0"
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.8"
+ VALUE "ProductVersion", "1.3.0"
VALUE "SquirrelAwareVersion", "1"
END
END
diff --git a/atom/common/atom_version.h b/atom/common/atom_version.h
index 9ad4e0a65cb9..437562f9ca82 100644
--- a/atom/common/atom_version.h
+++ b/atom/common/atom_version.h
@@ -6,8 +6,8 @@
#define ATOM_VERSION_H
#define ATOM_MAJOR_VERSION 1
-#define ATOM_MINOR_VERSION 2
-#define ATOM_PATCH_VERSION 8
+#define ATOM_MINOR_VERSION 3
+#define ATOM_PATCH_VERSION 0
#define ATOM_VERSION_IS_RELEASE 1
diff --git a/electron.gyp b/electron.gyp
index 541ed8bfda5a..4f8a1056c572 100644
--- a/electron.gyp
+++ b/electron.gyp
@@ -4,7 +4,7 @@
'product_name%': 'Electron',
'company_name%': 'GitHub, Inc',
'company_abbr%': 'github',
- 'version%': '1.2.8',
+ 'version%': '1.3.0',
},
'includes': [
'filenames.gypi',
diff --git a/package.json b/package.json
index 89528e4ca8f5..6dab962b19da 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "electron",
- "version": "1.2.8",
+ "version": "1.3.0",
"devDependencies": {
"asar": "^0.11.0",
"request": "*",