diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5416b566c8e..8c7ff6c08d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
-## 7.0.4
+## 7.1.0
+- Add SourceLink debugger support.
- Bug fix: PolicyRegistry with .NET Core services.AddPolicyRegistry() overload (affects Polly v7.0.1-3 only)
- Rationalise solution layout
- Add explicit .NET framework 4.6.2 and 4.7.2 test runs
diff --git a/GitVersionConfig.yaml b/GitVersionConfig.yaml
index d13aa635497..6dd7305ac44 100644
--- a/GitVersionConfig.yaml
+++ b/GitVersionConfig.yaml
@@ -1 +1 @@
-next-version: 7.0.4
+next-version: 7.1.0
diff --git a/README.md b/README.md
index 3c059000498..2e0d63058f3 100644
--- a/README.md
+++ b/README.md
@@ -1011,6 +1011,9 @@ For more detail see: [Polly and interfaces](https://github.com/App-vNext/Polly/w
* [@seanfarrow](https://github.com/SeanFarrow) - Enable collection initialization syntax for PolicyRegistry.
* [@moerwald](https://github.com/moerwald) - Code clean-ups, usage of more concise C# members.
* [@cmeeren](https://github.com/cmeeren) - Enable cache policies to cache values of default(TResult).
+* [@aprooks](https://github.com/aprooks) - Build script tweaks for Mac and mono.
+* [@kesmy](https://github.com/Kesmy) - Add Soucelink support, clean up cake build.
+
# Sample Projects
diff --git a/src/Polly/Polly.csproj b/src/Polly/Polly.csproj
index ea3aa9285e2..0a4ab26d758 100644
--- a/src/Polly/Polly.csproj
+++ b/src/Polly/Polly.csproj
@@ -4,11 +4,11 @@
netstandard1.1;netstandard2.0
Polly
Polly
- 7.0.4
+ 7.1.0
7.0.0.0
- 7.0.4.0
- 7.0.4.0
- 7.0.4
+ 7.1.0.0
+ 7.1.0.0
+ 7.1.0
App vNext
Copyright (c) 2019, App vNext
Polly is a library that allows developers to express resilience and transient fault handling policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner.