diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,7 @@
+## 0.1.0.2
+
+* Improved README
+
 ## 0.1.0.1
 
 * Add handling of 503 error code
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,39 +1,27 @@
 # stackage-upload
 
-A more secure version of cabal upload which uses HTTPS. When uploading a
-package to Hackage, `cabal-install` will perform the upload in plain-text,
-unencrypted HTTP, which is vulnerable to man in the middle (MITM) attacks. This
-package instead uses secure HTTPS upload to avoid both MITM attacks, and
-possibly eavesdropping attacks (though the latter are yet unproven). In the
-future, additionally functionality may be added.
+`stackage-upload` provides a more secure version of the `cabal upload` command
+by using HTTPS. When uploading a package to Hackage, `cabal upload` will
+perform the upload in plain-text via unencrypted HTTP, using [basic
+authentication](https://github.com/haskell/cabal/blob/2b3a69490a2dbd6dfa3905b8a50ebad8aec7b276/cabal-install/Distribution/Client/Upload.hs#L56),
+which is vulnerable to both man in the middle (MITM) and eavesdropping attacks
+(anyone sniffing your packets can get your username and password). This package
+instead uses secure HTTPS to upload to avoid both of these attacks.
 
 To install, simply run `cabal update && cabal install stackage-upload`. Usage
-is quite similar `cabal upload`: just call `stackage-upload` and pass in a list
+is quite similar to  `cabal upload`: just call `stackage-upload` and pass in a list
 of tarballs to upload. (If you have
 [stackage-cli](https://github.com/fpco/stackage-cli) installed, you can call
 `stk upload` instead.) `stackage-upload --help` will provide full options.
 
 ## Why not fix cabal?
 
-A legitimate question is why not add HTTPS support to cabal-install? The answer
-is that I tried. At least as of April 2015, there was no proposal I was able to
-make that allowed TLS support to be added to cabal-install, due to policies
-regarding dependencies in the Cabal project. I would be much happier to add
-this support there (and, at the same time, add secure *download* support, which
-is also severely lacking). I made an open offer in April 2015, and the offer
-stands: if the Cabal project gives me the green light to add http-client as a
-dependency to cabal-install, I'll send the pull request myself.
-
-To give some more background: Cabal currently requires that all dependencies
-be part of the Haskell Platform. I disagree with this decision, since
-distributing a binary does not require that the libraries be available as well.
-The last time TLS support in the Platform was raised, the best option for this
-support (Vincent's wonderful [tls
-package](https://www.stackage.org/package/tls) was vetoed because [it didn't
-follow the Package Versioning Policy's strict upper bounds
-approach](https://mail.haskell.org/pipermail/libraries/2014-April/022554.html).
-(Ironically, the alternative package mentioned there, http-streams, *also*
-doesn't have upper bounds on all dependencies.)
+I'd be happy to add TLS support to cabal-install directly (using Vincent's
+`tls` package), but the two last times this topic came up, I have been unable
+to find a proposal that is acceptable to the Cabal project (mostly around
+Haskell Platform requirements). I made an open offer to send the pull request
+myself to move cabal-install over to http-client to get TLS support (either via
+http-client-tls or http-client-openssl).
 
 ## Why Stackage?
 
@@ -52,7 +40,7 @@
 upload situation became apparent to me, and it became obvious that there was no
 path forward for getting `cabal-install` fixed.
 
-I actually consider this situation to be so dangerous, I would like to ask the
+I actually consider this situation to be so dangerous that I would like to ask the
 Hackage Server team to consider turning off insecure uploads to Hackage. The
 current possibility for corrupted uploads to infect all users of a package is
 alarmingly high.
diff --git a/stackage-upload.cabal b/stackage-upload.cabal
--- a/stackage-upload.cabal
+++ b/stackage-upload.cabal
@@ -1,5 +1,5 @@
 name:                stackage-upload
-version:             0.1.0.1
+version:             0.1.0.2
 synopsis:            A more secure version of cabal upload which uses HTTPS
 description:         For more information, see <https://www.stackage.org/package/stackage-upload>
 homepage:            https://github.com/fpco/stackage-upload
