Skip to content

Commit b8a8723

Browse files
committed
Update license, go.mod. Added doc.go
1 parent f264427 commit b8a8723

29 files changed

+42
-28
lines changed

client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

doc.go

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
//
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
3+
// Use of this source code is governed by a BSD-style
4+
// license that can be found in the LICENSE file.
5+
//
6+
7+
// lsp is an implementation of a Language Server Protocol handler.
8+
package lsp

go.mod

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
module go.bug.st/lsp
22

3-
go 1.15
3+
go 1.22
44

55
require (
66
github.com/arduino/go-paths-helper v1.6.1
77
github.com/davecgh/go-spew v1.1.0
88
github.com/stretchr/testify v1.6.1
99
go.bug.st/json v1.15.6
1010
)
11+
12+
require (
13+
github.com/pkg/errors v0.9.1 // indirect
14+
github.com/pmezard/go-difflib v1.0.0 // indirect
15+
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
16+
)

jsonrpc/jsonrpc_connection.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

jsonrpc/jsonrpc_protocol.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

jsonrpc/jsonrpc_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

jsonrpc/logger.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_basic.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_basic_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_capabilities_client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_capabilities_server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_capabilities_server_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_diagnostics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_general.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_general_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_language.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_msg_convert.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_position.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_sumtypes.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_sumtypes_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_text_synchronization.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_unimplemented.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_window.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

lsp_workspace.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

textedits/textedits.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

textedits/textutils_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

uri.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

uri_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// Copyright 2021 Cristian Maglie. All rights reserved.
2+
// Copyright 2024 Cristian Maglie. All rights reserved.
33
// Use of this source code is governed by a BSD-style
44
// license that can be found in the LICENSE file.
55
//

0 commit comments

Comments
 (0)