From 0d6bc0446af9d91d331e32c44c1d9ab1305df504 Mon Sep 17 00:00:00 2001 From: Jacob MacDonald Date: Mon, 8 Feb 2016 15:10:33 -0800 Subject: [PATCH] update for release --- CHANGELOG.md | 17 +++++++++++++++++ pubspec.yaml | 2 +- test/generate/build_test.dart | 1 - 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a11689988..c0b58b284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 0.1.1 + +- Exposed the top level `build` function. This can be used to run builds. + - For this release all builds are non-incremental, and delete all previous + build outputs when they start up. + - Creates a `.build` directory which should be added to your `.gitignore`. +- Added `resolve` method to `BuildStep` which can give you a `Resolver` for an + `AssetId`. + - This is experimental and may get moved out to a separate package. + - Resolves the full dart sdk so this is slow, first call will take multiple + seconds. Subsequent calls are much faster though. + - Will end up marking all transitive deps as dependencies, so your files may + end up being recompiled often when not entirely necessary (once we have + incremental builds). +- Added `listAssetIds` to `AssetReader` (only matters if you implement it). +- Added `delete` to `AssetWriter` (also only matters if you implement it). + ## 0.1.0 - Initial version diff --git a/pubspec.yaml b/pubspec.yaml index a351f29cd..9ccb411d3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: build -version: 0.1.0 +version: 0.1.1 description: A build system for Dart. author: Dart Team homepage: https://github.com/dart-lang/build diff --git a/test/generate/build_test.dart b/test/generate/build_test.dart index 99c8f4ca0..67ae7c319 100644 --- a/test/generate/build_test.dart +++ b/test/generate/build_test.dart @@ -3,7 +3,6 @@ // BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:convert'; -import 'dart:io'; import 'package:test/test.dart';