Merge pull request #1701 from dart-lang/0.1.97

0.1.97
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2de4fc8..e3c15a8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+# 0.1.97
+
+* internal: migrated away from using analyzer `resolutionMap`
+* various fixes and improvements to anticipate support for extension-methods
+* new lint: `camel_case_extensions`
+* rule template generation improvements
+* new lint: `avoid_equals_and_hash_code_on_mutable_classes`
+* extended `avoid_slow_async_io` to flag async `Directory` methods
+
 # 0.1.96
 
 * fixed false positives in `unnecessary_parens`
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 14ca007..8b749f0 100644
--- a/lib/src/version.dart
+++ b/lib/src/version.dart
@@ -3,4 +3,4 @@
 // BSD-style license that can be found in the LICENSE file.
 
 /// Package version.  Synchronized w/ pubspec.yaml.
-const String version = '0.1.96';
+const String version = '0.1.97';
diff --git a/pubspec.yaml b/pubspec.yaml
index 6a098a9..13d96e0 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 0.1.96
+version: 0.1.97
 
 author: Dart Team <misc@dartlang.org>