From 436966f2cac19625a575e68768ca1e8b2fbdabd3 Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Tue, 15 Mar 2016 07:36:41 -0700 Subject: [PATCH] prepare for 0.2.1 release --- CHANGELOG.md | 15 +++++++++++++++ pubspec.yaml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6720a8a..70ad199ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.2.1 +- Added the `deleteFilesByDefault` option to all top level methods. This will + skip the prompt to delete files, and instead act as if you responded `y`. + - Also by default in a non-console environment the prompt no longer exists and + it will instead just exit with an error. +- Added support for multiple build scripts. Each script now has its own asset + graph based on a hash of the script uri. + - You need to be careful here, as you can get in an infinite loop if two + separate build scripts keep triggering updates for each other. + - There is no explicit link between multiple scripts, so they operate as if + all changes from other scripts were user edits. This will usually just do + the "right thing", but may result in undesired behavior in some + circumstances. +- Improved logging for non-posix consoles. + ## 0.2.0 - Updated the top level classes to take a `PhaseGroup` instead of a `List>`. diff --git a/pubspec.yaml b/pubspec.yaml index bf8526618..cf1c2de21 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: build -version: 0.2.0 +version: 0.2.1 description: A build system for Dart. author: Dart Team homepage: https://github.com/dart-lang/build