diff --git a/README.md b/README.md
index 4b2a08a..779f940 100644
--- a/README.md
+++ b/README.md
@@ -17,8 +17,7 @@ Connectivity's objective is to solve the captive portal problem whereby an iOS d
To learn more about how to use Connectivity, take a look at the [keynote presentation](https://github.com/rwbutler/Connectivity/blob/master/docs/presentations/connectivity.pdf), check out the [blog post](https://medium.com/@rwbutler/solving-the-captive-portal-problem-on-ios-9a53ba2b381e), or make use of the table of contents below:
- [Features](#features)
-- [What's New in Connectivity 5.0.0?](#whats-new-in-connectivity-500)
-- [What's New in Connectivity 4.0.0?](#whats-new-in-connectivity-400)
+- [What's New in Connectivity 5.2.0?](#whats-new-in-connectivity-520)
- [Hyperconnectivity](#hyperconnectivity)
- [Installation](#installation)
- [Cocoapods](#cocoapods)
@@ -27,6 +26,8 @@ To learn more about how to use Connectivity, take a look at the [keynote present
- [How It Works](#how-it-works)
- [Usage](#usage)
- [Callbacks](#callbacks)
+ - [Combine](#combine)
+ - [Configuration](#configuration)
- [One-Off Checks](#one-off-checks)
- [Connectivity URLs](#connectivity-urls)
- [Network Framework](#network-framework)
@@ -48,26 +49,11 @@ To learn more about how to use Connectivity, take a look at the [keynote present
- [x] Detect when connected to a router that has no Internet access.
- [x] Be notified of changes in Internet connectivity.
- [x] Polling connectivity checks may be performed where a constant network connection is required (optional).
+- [x] Combine support via [`Connectivity.Publisher`](https://github.com/rwbutler/Connectivity/blob/master/Connectivity/Classes/Combine/ConnectivityPublisher.swift).
-## What's new in Connectivity 5.0.0?
+## What's new in Connectivity 5.2.0?
-Connectivity 5.0.0 provides support for Xcode 12 and raises the minimum deployment target to iOS 9 (dropping support for iOS 8).
-
-## What's new in Connectivity 4.0.0?
-
-Connectivity 4.0.0 adds [`Connectivity.Publisher`](https://github.com/rwbutler/Connectivity/blob/master/Connectivity/Classes/Combine/ConnectivityPublisher.swift) enabling Connectivity to be used with Apple's [Combine](https://developer.apple.com/documentation/combine) framework. For more information see the example using Combine in the sample app.
-
-If you require the previous version then in your `Podfile` set:
-
-```ruby
-pod "Connectivity" "~> 3.0"
-```
-
-Or if you are using Carthage add the following to your `Cartfile`:
-
-```ogdl
-github "rwbutler/Connectivity" ~> 3.0
-```
+Connectivity 5.2.0 provides a new fluent interface for configuring the Connectivity framework. See [Configuration](#configuration) for more information.
## Hyperconnectivity
@@ -75,9 +61,14 @@ If you don't require support for Objective-C or versions of iOS prior to iOS 13