diff --git a/CHANGELOG.md b/CHANGELOG.md
index f47dfae..4cb5c29 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,23 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+
+# [2.0.0](https://github.com/uetchy/Polyglot/compare/v1.2.0...v2.0.0) (2016-09-07)
+
+
+### Features
+
+* **settings:** flexible keyboard shortcut (#12) ([c63d1d3](https://github.com/uetchy/Polyglot/commit/c63d1d3))
+
+
+### BREAKING CHANGES
+
+* settings: new settings value
+
+* chore: update builder version
+
+
+
# [1.2.0](https://github.com/uetchy/Polyglot/compare/v1.1.4...v1.2.0) (2016-08-28)
diff --git a/Polyglot.safariextension/Info.plist b/Polyglot.safariextension/Info.plist
index b40363e..861122e 100644
--- a/Polyglot.safariextension/Info.plist
+++ b/Polyglot.safariextension/Info.plist
@@ -13,9 +13,9 @@
CFBundleInfoDictionaryVersion
6.0
CFBundleShortVersionString
- 1.2.0
+ 2.0.0
CFBundleVersion
- 1.1.4
+ 2.0.0
Chrome
Context Menu Items
diff --git a/docs/manifest.plist b/docs/manifest.plist
index d10baf3..c544ed8 100644
--- a/docs/manifest.plist
+++ b/docs/manifest.plist
@@ -10,11 +10,11 @@
Developer Identifier
58XDWHK3JX
CFBundleVersion
- 1.2.0
+ 2.0.0
CFBundleShortVersionString
- 1.2.0
+ 2.0.0
URL
- https://github.com/uetchy/Polyglot/releases/download/v1.2.0/Polyglot.safariextz
+ https://github.com/uetchy/Polyglot/releases/download/v2.0.0/Polyglot.safariextz
Update From Gallery
diff --git a/package.json b/package.json
index 1f886b8..6219aed 100644
--- a/package.json
+++ b/package.json
@@ -1,11 +1,12 @@
{
"name": "Polyglot",
- "version": "1.2.0",
+ "version": "2.0.0",
"private": true,
"scripts": {
"test": "xo",
"start": "webpack -w",
- "build": "webpack"
+ "build": "webpack",
+ "release": "standard-version"
},
"dependencies": {
"whatwg-fetch": "^1.0.0"
@@ -13,6 +14,7 @@
"devDependencies": {
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
+ "standard-version": "^2.4.0",
"webpack": "^1.13.2",
"xo": "^0.16.0"
},