From 14d64e854a348ff0aa585fd67305c2c1ee5cc343 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 18 Feb 2018 13:00:36 -0500 Subject: [PATCH] -> v0.7.0 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/cli/help.md | 4 ++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 843426b..8273b4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # sapper changelog +## 0.7.0 + +* Restructure app layout (see [migration guide](https://sapper.svelte.technology/guide#0-6-to-0-7)) ([#126](https://github.com/sveltejs/sapper/pull/126)) +* Support `this.redirect(status, location)` and `this.error(status, error)` in `preload` functions ([#127](https://github.com/sveltejs/sapper/pull/127)) +* Add `sapper dev` command +* Add `sapper --help` command + ## 0.6.4 * Prevent phantom HMR requests in production mode ([#114](https://github.com/sveltejs/sapper/pull/114)) diff --git a/package.json b/package.json index 841be3c..445721a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sapper", - "version": "0.6.4", + "version": "0.7.0", "description": "Military-grade apps, engineered by Svelte", "main": "middleware.js", "bin": { diff --git a/src/cli/help.md b/src/cli/help.md index bc34cce..8d52abb 100644 --- a/src/cli/help.md +++ b/src/cli/help.md @@ -2,6 +2,10 @@ https://sapper.svelte.technology +> sapper dev + +Start a development server + > sapper build Creates a production-ready version of your app