From ae1b6e790d007ac2e1888076542fd72dd8dc4c0c Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Wed, 12 Nov 2014 23:13:24 -0800 Subject: [PATCH] release 0.1.3 --- CHANGELOG.md | 19 +++++++++++++++++-- lib/generators/shelfserver.dart | 2 +- lib/src/cli_app.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e746f33..6f64d1a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,25 @@ # CHANGELOG +## 0.1.3 + +* added a `label` attribute to the templates and to the `--machine` output +* renamed the `shelfapp` template to `shelfserver` +* added a --version command-line option +* clarified and simplified some template descriptions +* made useage of Sass in the `webapp` template optional; added instructions in + the template about how to enable it +* added instructions after project generation to tell the user how best to run + the project +* Stagehand is now integrated into the Editor, the Eclipe plugins, Chrome Dev + Editor, and the Sublime plugin + ## 0.1.2 -* removed the `-o` option; we now generate the selected template into the current directory +* removed the `-o` option; we now generate the selected template into the + current directory * added pre-generated css to the `webapp` template -* some changes to better support stagehand being driven by existing tooling (IDEs) +* some changes to better support stagehand being driven by existing tooling + (IDEs) * the `polymer` template was renamed to `polymerapp` ## 0.1.1 diff --git a/lib/generators/shelfserver.dart b/lib/generators/shelfserver.dart index ab6b0d0a..75198dad 100644 --- a/lib/generators/shelfserver.dart +++ b/lib/generators/shelfserver.dart @@ -2,7 +2,7 @@ // All rights reserved. Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -library stagehand.shelfapp; +library stagehand.shelfserver; import '../stagehand.dart'; import '../src/common.dart'; diff --git a/lib/src/cli_app.dart b/lib/src/cli_app.dart index 00094cbe..1f97b68d 100644 --- a/lib/src/cli_app.dart +++ b/lib/src/cli_app.dart @@ -18,7 +18,7 @@ import 'package:stagehand/src/common.dart'; const String APP_NAME = 'stagehand'; // This version must be updated in tandem with the pubspec version. -const String APP_VERSION = '0.1.3-dev'; +const String APP_VERSION = '0.1.3'; // The Google Analytics tracking ID for stagehand. const String _GA_TRACKING_ID = 'UA-55033590-1'; diff --git a/pubspec.yaml b/pubspec.yaml index 3df8f3fc..7d58edfc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ name: stagehand # When changing this version, change the lib/src/cli_app.dart version as well. -version: 0.1.3-dev +version: 0.1.3 description: > A scaffolding generator for your Dart projects. Stagehand helps you get set up!