add support for code_transformers 0.4.x
diff --git a/CHANGELOG.md b/CHANGELOG.md
index da0a5c4..ca4fe3c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.6.2+1
+
+* Add support for code_transformers `0.4.x`.
+
 ## 0.6.2
 
 * Update analyzer to `>=0.27.0 <0.28.0`.
diff --git a/pubspec.yaml b/pubspec.yaml
index fff4c58..db98811 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,12 +1,12 @@
 name: initialize
-version: 0.6.2
+version: 0.6.2+1
 author: Polymer.dart Authors <web@dartlang.org>
 description: Generic building blocks for doing static initialization.
 homepage: https://github.com/dart-lang/initialize
 dependencies:
   analyzer: '>=0.27.0 <0.28.0'
   barback: '>=0.14.2 <0.16.0'
-  code_transformers: '>=0.3.0 <0.4.0'
+  code_transformers: '>=0.3.0 <0.5.0'
   dart_style: '>=0.1.3 <0.3.0'
   glob: ">=1.0.4 <2.0.0"
   html: '>=0.12.0 <0.13.0'
@@ -15,6 +15,7 @@
   test_package:
     path: test_package
   test: '>=0.12.0 <0.13.0'
+  transformer_test: '>=0.1.0 <0.2.0'
 environment:
   sdk: ">=1.9.0-dev.7.1 <2.0.0"
 transformers:
diff --git a/test/common.dart b/test/common.dart
index d730bc9..0638431 100644
--- a/test/common.dart
+++ b/test/common.dart
@@ -4,7 +4,7 @@
 library initialize.test.build.common;
 
 import 'package:barback/barback.dart';
-import 'package:code_transformers/src/test_harness.dart';
+import 'package:transformer_test/src/test_harness.dart';
 import 'package:test/test.dart';
 
 testPhases(String testName, List<List<Transformer>> phases,
diff --git a/test/transformer_test.dart b/test/transformer_test.dart
index da80f4a..b7c83ca 100644
--- a/test/transformer_test.dart
+++ b/test/transformer_test.dart
@@ -1,6 +1,7 @@
 // Copyright (c) 2015, 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 initialize.transformer_test;
 
 import 'common.dart';