0.1.114 (#2047)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6e9d5c9..502996b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 0.1.114
+
+* fixed `avoid_shadowing_type_parameters` to support extensions and mixins
+* updated `non_constant_identifier_names` to allow named constructors made up of only underscores (`_`)
+* updated `avoid_unused_constructor_parameters` to ignore unused params named in all underscores (`_`)
+
 # 0.1.113
 
 * updated documentation links
diff --git a/lib/src/version.dart b/lib/src/version.dart
index 1cb2560..72234cd 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.113';
+const String version = '0.1.114';
diff --git a/pubspec.yaml b/pubspec.yaml
index 2104242..951dedc 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,5 +1,5 @@
 name: linter
-version: 0.1.113
+version: 0.1.114
 
 description: >-
   The implementation of the lint rules supported by the analyzer framework.