diff --git a/CHANGELOG.md b/CHANGELOG.md
index bebcbd1..e56a8b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,21 @@
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.
+
+# [1.0.0](https://github.com/pi0/nuxt7/compare/v0.9.1...v1.0.0) (2018-01-14)
+
+
+### Code Refactoring
+
+* remove legacy dependencies for rc.11 ([6ae2d29](https://github.com/pi0/nuxt7/commit/6ae2d29))
+
+
+### BREAKING CHANGES
+
+* requires nuxt@^1.0.0
+
+
+
## [0.9.1](https://github.com/pi0/nuxt7/compare/v0.9.0...v0.9.1) (2017-12-22)
diff --git a/package.json b/package.json
index 14c5631..8f90907 100644
--- a/package.json
+++ b/package.json
@@ -1,14 +1,13 @@
{
"name": "nuxt7",
- "version": "0.9.1",
+ "version": "1.0.0",
"license": "MIT",
"main": "lib/module.js",
"scripts": {
"dev": "npm run ks",
"ks": "nuxt dev -c examples/kitchen-sink/nuxt.config.js",
"ks-build": "nuxt build -c examples/kitchen-sink/nuxt.config.js",
- "ks-analyze":
- "nuxt build -c examples/kitchen-sink/nuxt.config.js --analyze",
+ "ks-analyze": "nuxt build -c examples/kitchen-sink/nuxt.config.js --analyze",
"ks-start": "nuxt start --spa -c examples/kitchen-sink/nuxt.config.js",
"ks-generate": "nuxt generate -c examples/kitchen-sink/nuxt.config.js",
"lint": "eslint --ext .js,.vue .",
@@ -18,7 +17,9 @@
"release": "standard-version && git push --follow-tags && npm publish"
},
"lint-staged": {
- "*.{js,vue}": ["yarn lint"]
+ "*.{js,vue}": [
+ "yarn lint"
+ ]
},
"dependencies": {
"@nuxtjs/pwa": "^2.0.5",