0.1.116 (#2093)

* 0.1.116

* typo

* typo

* marked no_default_cases as experimental
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cdf9849..787434c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# 0.1.116
+
+* new lint: `no_default_cases` (experimental)
+* new lint: `exhaustive_cases`
+* updated `type_annotate_public_apis` to allow inferred types in final field assignments
+* updated `prefer_mixin` to allow "legacy" SDK abstract class mixins
+* new lint: `use_is_even_rather_than_modulo`
+* update `unsafe_html` to use a `SecurityLintCode` (making it un-ignorable)
+* improved `sized_box_for_whitespace` to address false-positives
+
 # 0.1.115
 
 * updated `avoid_types_as_parameter_names` to check catch-clauses
diff --git a/lib/src/rules/no_default_cases.dart b/lib/src/rules/no_default_cases.dart
index 1300e9f..e95309c 100644
--- a/lib/src/rules/no_default_cases.dart
+++ b/lib/src/rules/no_default_cases.dart
@@ -53,7 +53,8 @@
             name: 'no_default_cases',
             description: _desc,
             details: _details,
-            group: Group.style);
+            group: Group.style,
+            maturity: Maturity.experimental);
 
   @override
   void registerNodeProcessors(NodeLintRegistry registry,
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 971a1b6..98a6203 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.115';
+const String version = '0.1.116';
diff --git a/pubspec.yaml b/pubspec.yaml
index e14dd22..8406a58 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 0.1.115
+version: 0.1.116
 
 description: >-
   The implementation of the lint rules supported by the analyzer framework.