Skip to content

Commit

Permalink
feat: refactor in logger
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardofslp committed Jul 7, 2024
1 parent 2cc9de9 commit 9bf4b1c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<a name="2.0.0-alpha.2"></a>
## [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))

<a name="2.0.0-alpha.1"></a>
## [2.0.0-alpha.1](https://www.github.com/joaoopereira/dotnet-test-rerun/releases/tag/v2.0.0-alpha.1) (2024-07-07)

<a name="2.0.0-alpha.0"></a>
## [2.0.0-alpha.0](https://www.github.com/joaoopereira/dotnet-test-rerun/releases/tag/v2.0.0-alpha.0) (2024-07-07)

Expand Down
2 changes: 1 addition & 1 deletion src/Logging/Logger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private void Write(string msg)
/// </summary>
/// <param name="msg">message to be escaped</param>
/// <returns>escaped message</returns>
private string EscapeMarkup(string msg) => msg?.Replace("[", "[[").Replace("]", "]]");
private string EscapeMarkup(string msg) => msg!.Replace("[", "[[").Replace("]", "]]");

/// <summary>
/// LogLevel Parser
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-test-rerun.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression> GPL-3.0-or-later</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>2.0.0-alpha.0</Version>
<Version>2.0.0-alpha.2</Version>
<PackageProjectUrl>https://github.com/joaoopereira/dotnet-test-rerun</PackageProjectUrl>
<Description>wrapper of dotnet test command that automatic rerun failed tests</Description>
<RepositoryUrl>https://github.com/joaoopereira/dotnet-test-rerun</RepositoryUrl>
Expand Down

0 comments on commit 9bf4b1c

Please sign in to comment.