diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97dce5f5258..61e67f0fc37 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,18 @@
+## 8.6.3
+
+* Add release notes configuration by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2678
+* Simplify release workflow by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2679
+* Sign-off commits by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2694
+* Add GitHub sponsorship by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2695
+* Refactor project dependencies by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2696
+* Add zizmor by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2698
+* Update benchmarks by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2712
+* Reduce async overhead by [@pentp](https://github.com/pentp) in https://github.com/App-vNext/Polly/pull/2664
+* Update benchmarks by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2713
+
## 8.6.2
* Performance tweaks by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2667
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 9bfaa6cf565..cb9bc51cc52 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -22,7 +22,7 @@
-
+
diff --git a/eng/bump-version.ps1 b/eng/bump-version.ps1
index a2cadebf156..789fe495968 100644
--- a/eng/bump-version.ps1
+++ b/eng/bump-version.ps1
@@ -9,7 +9,7 @@ $repo = Join-Path $PSScriptRoot ".."
$properties = Join-Path $repo "Directory.Packages.props"
$xml = [xml](Get-Content $properties)
-$pollyVersion = $xml.SelectSingleNode('Project/PropertyGroup/PollyVersion')
+$pollyVersion = $xml.SelectSingleNode("//PackageVersion[@Include='Polly']/@Version")
if ($ReleaseVersion.StartsWith("v")) {
$ReleaseVersion = $ReleaseVersion.Substring(1)
@@ -18,7 +18,7 @@ if ($ReleaseVersion.StartsWith("v")) {
$version = [System.Version]::new($ReleaseVersion)
$releasedVersion = $version.ToString()
-Write-Output "Bumping version from $($pollyVersion.InnerText) to $releasedVersion"
+Write-Output "Bumping version from $($pollyVersion.Value) to $releasedVersion"
$pollyVersion.InnerText = $releasedVersion