0.1.97+1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3c15a8..520169a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.97+1
+
+* enabled `camel_case_extensions` experimental lint
+
 # 0.1.97
 
 * internal: migrated away from using analyzer `resolutionMap`
@@ -17,7 +21,7 @@
 
 * improvements to `unsafe_html` error reporting
 * fixed false positive in `prefer_asserts_in_initializer_lists`
-* fixed `prefer_const_constructors` to not flag `@literal` annotated constructors.
+* fixed `prefer_const_constructors` to not flag `@literal` annotated constructors
 
 # 0.1.94
 
diff --git a/example/all.yaml b/example/all.yaml
index 52f7bcf..31eb754 100644
--- a/example/all.yaml
+++ b/example/all.yaml
@@ -42,6 +42,7 @@
     - avoid_unused_constructor_parameters
     - avoid_void_async
     - await_only_futures
+    - camel_case_extensions
     - camel_case_types
     - cancel_subscriptions
     - cascade_invocations
diff --git a/lib/src/rules.dart b/lib/src/rules.dart
index e4b1a74..2e977c8 100644
--- a/lib/src/rules.dart
+++ b/lib/src/rules.dart
@@ -43,6 +43,7 @@
 import 'package:linter/src/rules/avoid_unused_constructor_parameters.dart';
 import 'package:linter/src/rules/avoid_void_async.dart';
 import 'package:linter/src/rules/await_only_futures.dart';
+import 'package:linter/src/rules/camel_case_extensions.dart';
 import 'package:linter/src/rules/camel_case_types.dart';
 import 'package:linter/src/rules/cancel_subscriptions.dart';
 import 'package:linter/src/rules/cascade_invocations.dart';
@@ -197,6 +198,7 @@
     ..register(AvoidUnusedConstructorParameters())
     ..register(AvoidVoidAsync())
     ..register(AwaitOnlyFutures())
+    ..register(CamelCaseExtensions())
     ..register(CamelCaseTypes())
     ..register(CancelSubscriptions())
     ..register(CascadeInvocations())
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 8b749f0..0ba992c 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.97';
+const String version = '0.1.97+1';
diff --git a/pubspec.yaml b/pubspec.yaml
index 13d96e0..2c7377c 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 0.1.97
+version: 0.1.97+1
 
 author: Dart Team <misc@dartlang.org>