Skip to content

Commit

Permalink
Merge pull request #75 from nojaf/v0.8.0
Browse files Browse the repository at this point in the history
Bump SDK to 0.24.0
  • Loading branch information
nojaf authored Jan 30, 2024
2 parents 08d9a9c + 4e92036 commit 4d27147
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"fsharp-analyzers": {
"version": "0.23.0",
"version": "0.24.0",
"commands": [
"fsharp-analyzers"
]
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.8.0 - 2024-01-30

### Changed
* Update FSharp.Analyzers.SDK to `0.24.0`. [#68](https://github.com/ionide/ionide-analyzers/pull/75)

## 0.7.0 - 2024-01-10

### Added
Expand Down
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageVersion Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalAnalyzersSDK)' == 'false'">
<PackageVersion Include="FSharp.Analyzers.SDK" Version="[0.23.0]" />
<PackageVersion Include="FSharp.Analyzers.SDK.Testing" Version="[0.23.0]" />
<PackageVersion Include="FSharp.Analyzers.SDK" Version="[0.24.0]" />
<PackageVersion Include="FSharp.Analyzers.SDK.Testing" Version="[0.24.0]" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Ionide.Analyzers/Style/PostfixGenericsAnalyzer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ let postfixGenericsAnalyzer: Analyzer<CliContext> =
Type = "PostfixGenericsAnalyzer"
Message = message
Code = "IONIDE-002"
Severity = Info
Severity = Severity.Info
Range = range
Fixes = []
}
Expand Down
2 changes: 1 addition & 1 deletion src/Ionide.Analyzers/Suggestion/EmptyStringAnalyzer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let analyze (typedTree: FSharpImplementationFileContents) =
Message =
"Test for empty strings should use the String.Length property or the String.IsNullOrEmpty method."
Code = "IONIDE-005"
Severity = Warning
Severity = Severity.Warning
Range = r
Fixes = []
}
Expand Down

0 comments on commit 4d27147

Please sign in to comment.