Skip to content
This repository was archived by the owner on Aug 18, 2018. It is now read-only.

update pubspec/changelog for release #36

Merged
merged 2 commits into from
Mar 4, 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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## 0.4.1

* Added a fix for [#24890](https://github.com/dart-lang/sdk/issues/24890).
* All constants in all libraries will once again be resolved by default.
* Added a new `resolveAllLibraries` option to `Resolver#resolve` and
`Resolvers#get`. If `false` is passed then constants will not be resolved in
non entry points. This saves significant time if constants are not needed.
* Added a `useSharedSources` option to `Resolvers`. This gives a significant
speed increase, but must be used carefully.
* If used, then all `Resolver` instances created from the same `Resolvers`
instance will share the same sources cache.
* This should be generally safe to use if the `Resolvers` instance is created
in the constructor of your `Transformer`.
* This option should probably not be used with a static or shared `Resolvers`
instance.

## 0.4.0

* Remove dependency on `test`, and move all test related apis to a new
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: code_transformers
version: 0.4.0
version: 0.4.1
author: Dart Team <[email protected]>
description: Collection of utilities related to creating barback transformers.
homepage: https://github.com/dart-lang/code-transformers
Expand Down
2 changes: 1 addition & 1 deletion test/remove_sourcemap_comment_test.dart
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

@TestOn('vm')
library code_transformers.test.remove_sourcemap_comment_test;

import 'package:barback/barback.dart';
import 'package:code_transformers/src/remove_sourcemap_comment.dart';
import 'package:test/test.dart';
import 'package:transformer_test/utils.dart';

final phases = [
Expand Down