diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9345425..9419d6d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,24 @@
## 0.8.11 - 2024-10-22
+### ⏪ Revert changes
+
+- Remove code comments
+
+### ✨ Introduce new features
+
+- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)
+
+### 🐛 Fix a bug
+
+- Fix versioning
+
+### 📝 Add or update documentation
+
+- Update changelog for 0.8.11
+
+## 0.8.11 - 2024-10-22
+
### ✨ Introduce new features
- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)
diff --git a/CodeMirror6/CodeMirror6.csproj b/CodeMirror6/CodeMirror6.csproj
index 62f576c..c3ba9a5 100644
--- a/CodeMirror6/CodeMirror6.csproj
+++ b/CodeMirror6/CodeMirror6.csproj
@@ -9,7 +9,7 @@
GaelJ.BlazorCodeMirror6
true
GaelJ.BlazorCodeMirror6
- 0.8.10
+ 0.8.11
true
snupkg
true
diff --git a/Examples.BlazorServer/Examples.BlazorServer.csproj b/Examples.BlazorServer/Examples.BlazorServer.csproj
index b6dc60f..a57a0f2 100644
--- a/Examples.BlazorServer/Examples.BlazorServer.csproj
+++ b/Examples.BlazorServer/Examples.BlazorServer.csproj
@@ -4,7 +4,7 @@
enable
false
enable
- 0.8.10
+ 0.8.11
diff --git a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
index d6c2490..6d7437b 100644
--- a/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
+++ b/Examples.BlazorServerInteractive/Examples.BlazorServerInteractive.csproj
@@ -4,7 +4,7 @@
enable
enable
false
- 0.8.10
+ 0.8.11
diff --git a/Examples.BlazorWasm/Examples.BlazorWasm.csproj b/Examples.BlazorWasm/Examples.BlazorWasm.csproj
index b07bf00..1f7be2b 100644
--- a/Examples.BlazorWasm/Examples.BlazorWasm.csproj
+++ b/Examples.BlazorWasm/Examples.BlazorWasm.csproj
@@ -4,7 +4,7 @@
enable
enable
false
- 0.8.10
+ 0.8.11
diff --git a/Examples.Common/Examples.Common.csproj b/Examples.Common/Examples.Common.csproj
index 283ed0b..9bc32ff 100644
--- a/Examples.Common/Examples.Common.csproj
+++ b/Examples.Common/Examples.Common.csproj
@@ -5,7 +5,7 @@
enable
enable
false
- 0.8.10
+ 0.8.11
diff --git a/NEW_CHANGELOG.md b/NEW_CHANGELOG.md
index 229a625..89b862b 100644
--- a/NEW_CHANGELOG.md
+++ b/NEW_CHANGELOG.md
@@ -1,3 +1,15 @@
+### ⏪ Revert changes
+
+- Remove code comments
+
### ✨ Introduce new features
- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)
+
+### 🐛 Fix a bug
+
+- Fix versioning
+
+### 📝 Add or update documentation
+
+- Update changelog for 0.8.11
diff --git a/make-release.sh b/make-release.sh
index a33c922..1ca3f6c 100755
--- a/make-release.sh
+++ b/make-release.sh
@@ -45,6 +45,7 @@ git add ./*CHANGELOG.md
git commit -m "📝 Update changelog for $new_version"
# Bump version in all .csproj files
+dotnet tool restore
dotnet setversion -r "$new_version"
git add ./**/*.csproj
git commit -m "🔖 Bump version to $new_version"