Skip to content

Commit 9652517

Browse files
Bump version to 0.8.0 and update release notes (#314)
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.
1 parent 9d73bdc commit 9652517

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

src/ErrorProne.NET.CoreAnalyzers.CodeFixes/ErrorProne.NET.CoreAnalyzers.CodeFixes.csproj

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@
1818
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1919
<Description>Core .NET analyzers for detecting the most common coding issues</Description>
2020
<PackageReleaseNotes>
21+
0.8.0
22+
* Add DoNotBlockAsyncCallsInAsyncMethodsAnalyzer
23+
* Add MustUseResultAnalyzer
24+
* Add DoNotUseThreadSleepAnalyzer
25+
* Add analyzer to warn on returning null for Task-like types
26+
* Add TaskCompletionSourceAnalyzer
27+
* Add ExcludeFromCodeCoverage analyzer
28+
* Add Do not use async void methods rule
29+
* Add the analyzer for detecting infinite recursions
2130
0.7.0
2231
* Add EventSource analyzers
2332
* Warn on using tasks in 'using' block or 'using' statements.

src/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
3-
"version": "0.7.0-beta.{height}",
3+
"version": "0.8.0-beta.{height}",
44
"assemblyVersion": {
55
"precision": "revision"
66
},

0 commit comments

Comments
 (0)