Skip to content

Commit f8862b3

Browse files
authored
Merge pull request #1794 from sjakobs/update-gopls
Update gopls; 0.16 was incompatible with go 1.25
2 parents 9160b4e + 4714ec6 commit f8862b3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def EnableGoCompleter( args ):
964964
new_env.pop( 'GOROOT', None )
965965
new_env[ 'GOBIN' ] = p.join( new_env[ 'GOPATH' ], 'bin' )
966966

967-
gopls = 'golang.org/x/tools/gopls@v0.16.2'
967+
gopls = 'golang.org/x/tools/gopls@v0.20.0'
968968
CheckCall( [ go, 'install', gopls ],
969969
env = new_env,
970970
quiet = args.quiet,

ycmd/tests/go/subcommands_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,9 @@ def test_Subcommands_DefinedSubcommands( self, app ):
217217
'FixIt',
218218
'CallHierarchy',
219219
'ResolveCallHierarchyItem',
220+
'ResolveTypeHierarchyItem',
220221
'RestartServer',
222+
'TypeHierarchy',
221223
'ExecuteCommand' ) )
222224

223225

0 commit comments

Comments
 (0)