From d23e27f959a3e37e47172f65b5273819583f9c52 Mon Sep 17 00:00:00 2001 From: Sergey Teplyakov Date: Mon, 30 Jun 2025 13:59:50 -0700 Subject: [PATCH] Bump version to 0.8.0 and update release notes Updated version to 0.8.0-beta in version.json and added release notes for new analyzers and rules in the project file, including analyzers for async methods, Task-like types, code coverage, and infinite recursion. --- .../ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj | 9 +++++++++ src/version.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj index 16bc806..b652d91 100644 --- a/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj +++ b/src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj @@ -18,6 +18,15 @@ false Core .NET analyzers for detecting the most common coding issues + 0.8.0 + * Add DoNotBlockAsyncCallsInAsyncMethodsAnalyzer + * Add MustUseResultAnalyzer + * Add DoNotUseThreadSleepAnalyzer + * Add analyzer to warn on returning null for Task-like types + * Add TaskCompletionSourceAnalyzer + * Add ExcludeFromCodeCoverage analyzer + * Add Do not use async void methods rule + * Add the analyzer for detecting infinite recursions 0.7.0 * Add EventSource analyzers * Warn on using tasks in 'using' block or 'using' statements. diff --git a/src/version.json b/src/version.json index ed766f5..e25e538 100644 --- a/src/version.json +++ b/src/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "0.7.0-beta.{height}", + "version": "0.8.0-beta.{height}", "assemblyVersion": { "precision": "revision" },