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" },