Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump SDK to 0.24.0 #75

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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