diff --git a/src/CHANGELOG.md b/src/CHANGELOG.md
index dfbab79..01f8f55 100644
--- a/src/CHANGELOG.md
+++ b/src/CHANGELOG.md
@@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.
+
+## [2.0.0-alpha.2](https://www.github.com/joaoopereira/dotnet-test-rerun/releases/tag/v2.0.0-alpha.2) (2024-07-07)
+
+### Bug Fixes
+
+* refactor in logger ([f0a61bc](https://www.github.com/joaoopereira/dotnet-test-rerun/commit/f0a61bceeda19f5897237716da5df5cabd90c7cb))
+
+
+## [2.0.0-alpha.1](https://www.github.com/joaoopereira/dotnet-test-rerun/releases/tag/v2.0.0-alpha.1) (2024-07-07)
+
## [2.0.0-alpha.0](https://www.github.com/joaoopereira/dotnet-test-rerun/releases/tag/v2.0.0-alpha.0) (2024-07-07)
diff --git a/src/Logging/Logger.cs b/src/Logging/Logger.cs
index ebf6dfe..a83676a 100644
--- a/src/Logging/Logger.cs
+++ b/src/Logging/Logger.cs
@@ -131,7 +131,7 @@ private void Write(string msg)
///
/// message to be escaped
/// escaped message
- private string EscapeMarkup(string msg) => msg?.Replace("[", "[[").Replace("]", "]]");
+ private string EscapeMarkup(string msg) => msg!.Replace("[", "[[").Replace("]", "]]");
///
/// LogLevel Parser
diff --git a/src/dotnet-test-rerun.csproj b/src/dotnet-test-rerun.csproj
index 87854f4..2abb4c9 100644
--- a/src/dotnet-test-rerun.csproj
+++ b/src/dotnet-test-rerun.csproj
@@ -14,7 +14,7 @@
README.md
GPL-3.0-or-later
True
- 2.0.0-alpha.0
+ 2.0.0-alpha.2
https://github.com/joaoopereira/dotnet-test-rerun
wrapper of dotnet test command that automatic rerun failed tests
https://github.com/joaoopereira/dotnet-test-rerun