diff --git a/atom/browser/resources/mac/Info.plist b/atom/browser/resources/mac/Info.plist
index 55007cd98753..e0655b6fa44b 100644
--- a/atom/browser/resources/mac/Info.plist
+++ b/atom/browser/resources/mac/Info.plist
@@ -17,9 +17,9 @@
CFBundleIconFile
electron.icns
CFBundleVersion
- 1.5.1
+ 1.6.0
CFBundleShortVersionString
- 1.5.1
+ 1.6.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 4220927a91b3..8202be556505 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,5,1,0
- PRODUCTVERSION 1,5,1,0
+ FILEVERSION 1,6,0,0
+ PRODUCTVERSION 1,6,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -74,12 +74,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "GitHub, Inc."
VALUE "FileDescription", "Electron"
- VALUE "FileVersion", "1.5.1"
+ VALUE "FileVersion", "1.6.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.5.1"
+ VALUE "ProductVersion", "1.6.0"
VALUE "SquirrelAwareVersion", "1"
END
END
diff --git a/atom/common/atom_version.h b/atom/common/atom_version.h
index 4355205398c5..8a865c8cd2cf 100644
--- a/atom/common/atom_version.h
+++ b/atom/common/atom_version.h
@@ -6,8 +6,8 @@
#define ATOM_COMMON_ATOM_VERSION_H_
#define ATOM_MAJOR_VERSION 1
-#define ATOM_MINOR_VERSION 5
-#define ATOM_PATCH_VERSION 1
+#define ATOM_MINOR_VERSION 6
+#define ATOM_PATCH_VERSION 0
#define ATOM_VERSION_IS_RELEASE 1
diff --git a/electron.gyp b/electron.gyp
index 39c1f1904543..adf38cfbe50c 100644
--- a/electron.gyp
+++ b/electron.gyp
@@ -4,7 +4,7 @@
'product_name%': 'Electron',
'company_name%': 'GitHub, Inc',
'company_abbr%': 'github',
- 'version%': '1.5.1',
+ 'version%': '1.6.0',
'js2c_input_dir': '<(SHARED_INTERMEDIATE_DIR)/js2c',
},
'includes': [
diff --git a/package.json b/package.json
index 4265611d8771..b4f942ae2a1d 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "electron",
- "version": "1.5.1",
+ "version": "1.6.0",
"devDependencies": {
"asar": "^0.11.0",
"browserify": "^13.1.0",