Remove pubspec author and outdated URLs
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9005ccd..42b0565 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.1.2
+
+* Fix a number of lints affecting package maintenance score.
+
 ## 0.1.1+3
 
 * Support the latest `pkg:http` release.
diff --git a/README.md b/README.md
index da41cf2..d2914a8 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-Middleware for the [`http`](https://pub.dartlang.org/packages/http) package that
+Middleware for the [`http`](https://pub.dev/packages/http) package that
 transparently retries failing requests.
 
 To use this, just create an [`RetryClient`][RetryClient] that wraps the
 underlying [`http.Client`][Client]:
 
-[RetryClient]: https://www.dartdocs.org/documentation/http_retry/latest/http_retry/RetryClient-class.html
-[Client]: https://www.dartdocs.org/documentation/http/latest/http/Client-class.html
+[RetryClient]: https://pub.dev/documentation/http_retry/latest/http_retry/RetryClient-class.html
+[Client]: https://pub.dev/documentation/http/latest/http/Client-class.html
 
 ```dart
 import 'package:http/http.dart' as http;
@@ -23,4 +23,4 @@
 and increases the delay by 1.5x each time. All of this can be customized using
 the [`new RetryClient()`][new RetryClient] constructor.
 
-[new RetryClient]: https://www.dartdocs.org/documentation/http_retry/latest/http_retry/RetryClient/RetryClient.html
+[new RetryClient]: https://pub.dev/documentation/http_retry/latest/http_retry/RetryClient/RetryClient.html
diff --git a/pubspec.yaml b/pubspec.yaml
index 85743ad..6b536f4 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -1,8 +1,7 @@
 name: http_retry
-version: 0.1.1+3
+version: 0.1.2-dev
 
 description: HTTP client middleware that automatically retries requests.
-author: Dart Team <misc@dartlang.org>
 homepage: https://github.com/dart-lang/http_retry
 
 environment: