Skip to content

Commit 4870bbe

Browse files
authored
Merge pull request #51 from dawedawe/release_0.5.1
Release 0.5.1
2 parents 7569771 + 82476dd commit 4870bbe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## 0.5.1 - 2023-12-06
44

55
### Fixed
66
* Handle types without a FullName more gracefully in the EmptyStringAnalyzer. [#48](https://github.com/ionide/ionide-analyzers/pull/48)

src/Ionide.Analyzers/Suggestion/HandleOptionGracefullyAnalyzer.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let optionGetAnalyzer (ctx: CliContext) =
1919
let fullyQualifiedCall =
2020
let fullName =
2121
mfv.DeclaringEntity
22-
|> Option.map (fun e -> e.TryFullName)
22+
|> Option.map (fun e -> e.TryGetFullName())
2323
|> Option.flatten
2424
|> Option.defaultValue ""
2525

0 commit comments

Comments
 (0)