Skip to content

Commit

Permalink
Bump version to fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Jul 28, 2023
1 parent 7bc6f9c commit b017462
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ NUGET
System.Collections.Immutable (>= 5.0)
System.Reflection.Metadata (>= 5.0)
Ionide.KeepAChangelog.Tasks (0.1.8) - copy_local: true
Ionide.LanguageServerProtocol (0.4.16)
Ionide.LanguageServerProtocol (0.4.17)
FSharp.Core (>= 6.0)
Newtonsoft.Json (>= 13.0.1)
StreamJsonRpc (>= 2.10.44)
Expand Down
2 changes: 1 addition & 1 deletion src/FsAutoComplete/LspServers/AdaptiveFSharpLspServer.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2698,7 +2698,7 @@ type AdaptiveFSharpLspServer
{ SignatureInformation.Label = signature
Documentation = Some d
Parameters = Some parameters
ActiveParameter = 0u })
ActiveParameter = None })

let res =
{ Signatures = sigs
Expand Down
3 changes: 1 addition & 2 deletions src/FsAutoComplete/LspServers/FsAutoComplete.Lsp.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1488,8 +1488,7 @@ type FSharpLspServer(state: State, lspClient: FSharpLspClient, sourceTextFactory
{ SignatureInformation.Label = signature
Documentation = Some d
Parameters = Some parameters
// TODO: this should become an Option of value None
ActiveParameter = 0u })
ActiveParameter = None })

let res =
{ Signatures = sigs
Expand Down

0 comments on commit b017462

Please sign in to comment.