Skip to content

prepare for 0.2.1 release #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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<List<Phase>>`.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: build
version: 0.2.0
version: 0.2.1
description: A build system for Dart.
author: Dart Team <[email protected]>
homepage: https://github.com/dart-lang/build
Expand Down