diff --git a/CHANGELOG.md b/CHANGELOG.md
index 543b8db..be97992 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,23 @@
+# Change Log
+
+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.
+
+
+# [0.2.0](https://github.com/devaloka/network-wp-query/compare/v0.1.3...v0.2.0) (2017-04-09)
+
+
+### Features
+
+* include all network-wide posts by default ([ce27642](https://github.com/devaloka/network-wp-query/commit/ce27642))
+
+
+### BREAKING CHANGES
+
+* The default value of `posts_per_site` becomes the same value of
+`posts_per_page`.
+
+
+
## [0.1.3](https://github.com/devaloka/network-wp-query/compare/v0.1.2...v0.1.3) (2016-04-02)
diff --git a/loader/50-network-wp-query-loader.php b/loader/50-network-wp-query-loader.php
index bf92b7d..a79c383 100644
--- a/loader/50-network-wp-query-loader.php
+++ b/loader/50-network-wp-query-loader.php
@@ -2,7 +2,7 @@
/*
Plugin Name: Network WP Query
Description: Network-wide WP Query for Multisite environment
-Version: 0.1.3
+Version: 0.2.0
Author: Eric Lewis, Miguel Peixe, Whizark
Author URI: http://whizark.com
License: GPL-2.0+
diff --git a/network-wp-query.php b/network-wp-query.php
index 8197264..58fdb29 100644
--- a/network-wp-query.php
+++ b/network-wp-query.php
@@ -2,7 +2,7 @@
/*
Plugin Name: Network WP Query
Description: Network-wide WP Query for Multisite environment
-Version: 0.1.3
+Version: 0.2.0
Author: Eric Lewis, Miguel Peixe, Whizark
Author URI: http://whizark.com
License: GPL-2.0+
diff --git a/package.json b/package.json
index 4a96c48..dbffd19 100644
--- a/package.json
+++ b/package.json
@@ -1,39 +1,39 @@
{
- "version" : "0.1.3",
- "main" : "./network-wp-query.php",
- "repository" : {
- "type": "git",
- "url" : "https://github.com/devaloka/network-wp-query.git"
- },
- "scripts" : {
- "precommit" : "npm run --silent lint",
- "cz" : "git cz",
- "release:first": "standard-version --sign --first-release",
- "release:patch": "npm run --silent gulp bump:patch && git add -u && standard-version --sign --release-as patch --commit-all",
- "release:minor": "npm run --silent gulp bump:minor && git add -u && standard-version --sign --release-as minor --commit-all",
- "release:major": "npm run --silent gulp bump:major && git add -u && standard-version --sign --release-as major --commit-all",
- "gulp" : "gulp",
- "lint:md" : "remark .",
- "lint" : "npm-run-all --parallel --silent --continue-on-error lint:*",
- "watch:lint:md": "chokidar \"./**/*.md\" --ignore \"node_modules/**/*\" -c \"npm run --silent lint:md\"",
- "watch:lint" : "npm-run-all --parallel --silent --continue-on-error watch:lint:*",
- "watch" : "npm-run-all --parallel --silent --continue-on-error watch:lint",
- "ci:lint:md" : "remark --frail .",
- "ci:lint" : "npm-run-all --parallel --continue-on-error ci:lint:*"
- },
- "devDependencies": {
- "npm-run-all" : "~4.0.2",
- "chokidar-cli" : "~1.2.0",
- "husky" : "~0.13.3",
- "@whizark/cz-cli" : "~0.3.0",
- "standard-version" : "~4.0.0",
- "gulp" : "^3.9.1",
- "gulp-filter" : "^5.0.0",
- "gulp-replace" : "^0.5.4",
- "remark-cli" : "^3.0.0",
- "remark-lint" : "^6.0.0",
- "semver" : "^5.3.0",
- "@whizark/remark-preset": "~0.6.0"
- },
- "private" : true
+ "version": "0.2.0",
+ "main": "./network-wp-query.php",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/devaloka/network-wp-query.git"
+ },
+ "scripts": {
+ "precommit": "npm run --silent lint",
+ "cz": "git cz",
+ "release:first": "standard-version --sign --first-release",
+ "release:patch": "npm run --silent gulp bump:patch && git add -u && standard-version --sign --release-as patch --commit-all",
+ "release:minor": "npm run --silent gulp bump:minor && git add -u && standard-version --sign --release-as minor --commit-all",
+ "release:major": "npm run --silent gulp bump:major && git add -u && standard-version --sign --release-as major --commit-all",
+ "gulp": "gulp",
+ "lint:md": "remark .",
+ "lint": "npm-run-all --parallel --silent --continue-on-error lint:*",
+ "watch:lint:md": "chokidar \"./**/*.md\" --ignore \"node_modules/**/*\" -c \"npm run --silent lint:md\"",
+ "watch:lint": "npm-run-all --parallel --silent --continue-on-error watch:lint:*",
+ "watch": "npm-run-all --parallel --silent --continue-on-error watch:lint",
+ "ci:lint:md": "remark --frail .",
+ "ci:lint": "npm-run-all --parallel --continue-on-error ci:lint:*"
+ },
+ "devDependencies": {
+ "npm-run-all": "~4.0.2",
+ "chokidar-cli": "~1.2.0",
+ "husky": "~0.13.3",
+ "@whizark/cz-cli": "~0.3.0",
+ "standard-version": "~4.0.0",
+ "gulp": "^3.9.1",
+ "gulp-filter": "^5.0.0",
+ "gulp-replace": "^0.5.4",
+ "remark-cli": "^3.0.0",
+ "remark-lint": "^6.0.0",
+ "semver": "^5.3.0",
+ "@whizark/remark-preset": "~0.6.0"
+ },
+ "private": true
}