update the readme to clarify the package's goals (dart-lang/lints#130)

* update the readme to clarify the package's goals

* Update README.md

Co-authored-by: Parker Lougheed <parlough@gmail.com>

* add a link to the topics documentation

---------

Co-authored-by: Parker Lougheed <parlough@gmail.com>
diff --git a/pkgs/lints/CHANGELOG.md b/pkgs/lints/CHANGELOG.md
index 17cb7c3..b1c323a 100644
--- a/pkgs/lints/CHANGELOG.md
+++ b/pkgs/lints/CHANGELOG.md
@@ -1,7 +1,8 @@
-## 2.1.1-wip
+## 2.1.1
 
 - Added the `analysis` and `lints` topics to the pubspec file.
-- Update the package's readme to include the lint rules that `package:lints/core.yaml` and `package:lints/recommended.yaml` include.
+- Update the package's readme to include the list of lint rules that
+  `package:lints/core.yaml` and `package:lints/recommended.yaml` include.
 
 ## 2.1.0
 
diff --git a/pkgs/lints/README.md b/pkgs/lints/README.md
index c0d1a00..d661b92 100644
--- a/pkgs/lints/README.md
+++ b/pkgs/lints/README.md
@@ -25,7 +25,17 @@
 
 Additionally, a third lint set -
 [`package:flutter_lints`](https://pub.dev/packages/flutter_lints) - extends the
-recommended set with additional recommended Flutter-specific lints. Documentation on that can be found at [github.com/flutter/packages](https://github.com/flutter/packages/tree/main/packages/flutter_lints).
+recommended set with additional recommended Flutter-specific lints.
+
+The Dart team will likely not provide recommendations past the `core` and
+`recommended` sets (e.g., a `strict` rule set). However, there are many such rule
+sets in the ecosystem (available at [pub.dev](https://pub.dev/)).
+
+Rule set authors: consider adding the `lints` topic to your pubspec to allow
+easier discovery (e.g.,
+[pub.dev/packages?q=topic:lints](https://pub.dev/packages?q=topic%3Alints)).
+For more information about topics, see
+[dart.dev/tools/pub/pubspec#topics](https://dart.dev/tools/pub/pubspec#topics).
 
 ## Where these lints are used
 
@@ -37,7 +47,8 @@
 
 ## Enabling the lints
 
-For new apps created with `dart create` the recommended set of lints are enabled by default.
+For new apps created with `dart create` the `recommended` set of lints are enabled
+by default.
 
 For existing apps or packages, you can enable these lints via:
 
@@ -69,12 +80,12 @@
 
 The Dart language changes and the ecosystem continues to develop new best 
 practices, so the lint sets must be periodically updated to reflect the best way
-we know to write Dart code. The informal process we use is:
+we know to write Dart code. The process we use is:
 
-1.  Anyone can file an [issue] to discuss a potential change to a lint set. (A
-    change here means adding or removing a lint from one or both sets. If you
-    want to discuss implementing an entirely new lint, the place to suggest that
-    is at the [linter repo].) Feedback is welcome from any Dart user.
+1.  Anyone can file an [issue] to discuss a potential change to a lint set
+    (i.e., adding or removing a lint from one or both sets; if you're proposing
+    an entirely new lint, the place to suggest that is at the [linter repo]).
+    Feedback is welcome from any Dart user.
 
 2.  Periodically, a group of Dart and Flutter team members meet to review the
     suggestions and decide what to adopt.
diff --git a/pkgs/lints/pubspec.yaml b/pkgs/lints/pubspec.yaml
index 7ead4e3..1f79b0f 100644
--- a/pkgs/lints/pubspec.yaml
+++ b/pkgs/lints/pubspec.yaml
@@ -1,5 +1,5 @@
 name: lints
-version: 2.1.1-wip
+version: 2.1.1
 description: >
   Official Dart lint rules. Defines the 'core' and 'recommended' set of lints
   suggested by the Dart team.