diff --git a/CHANGELOG.md b/CHANGELOG.md
index 00854d6..2b631d4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+
+## [0.3.1](https://github.com/code-mancers/interceptor/compare/0.3.0...0.3.1) (2018-08-22)
+
+
+### Bug Fixes
+
+* **package.json:** remove jest from lint staged ([3b89dde](https://github.com/code-mancers/interceptor/commit/3b89dde))
+* **popup:** clear active interception when clear recorded data ([0f233ac](https://github.com/code-mancers/interceptor/commit/0f233ac)), closes [#149](https://github.com/code-mancers/interceptor/issues/149)
+
+
+
# [0.3.0](https://github.com/code-mancers/interceptor/compare/0.2.1...0.3.0) (2018-08-20)
diff --git a/app/manifest.json b/app/manifest.json
index b7213c8..e5b5461 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "Interceptor",
"description": "Run web clients without backends by mocking HTTP requests",
- "version": "0.3.0",
+ "version": "0.3.1",
"manifest_version": 2,
"icons": {
"16":"images/icon-16.png",
diff --git a/package.json b/package.json
index a86880e..d7334ef 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "interceptor",
- "version": "0.3.0",
+ "version": "0.3.1",
"description": "A browser extension that mocks AJAX request at the browser level so you can run frontend without really starting a backend server.",
"license": "MIT",
"homepage": "https://github.com/code-mancers/interceptor#readme",