Skip to content

Commit db6ae5d

Browse files
committed
[ new ] Release v0.2.6.4.0.3
1 parent 7b5d33d commit db6ae5d

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7-
## v0.2.6.4.0.2 - 2023-12-14
7+
## v0.2.6.4.0.3 - 2023-12-14
88

99
### Fixed
10-
- Add missing handlers for `lsp` methods.
10+
- #15: Add missing handlers for `lsp` methods.
11+
- #24: Fix the encoding of binaries built on GitHub Actions.
1112
- Patch path to the "data" directory when the executable is built on GitHub Actions.
1213

1314
## v0.2.6.4.0.0 - 2023-12-12

agda-language-server.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ cabal-version: 1.12
55
-- see: https://github.com/sol/hpack
66

77
name: agda-language-server
8-
version: 0.2.6.4.0.2
8+
version: 0.2.6.4.0.3
99
synopsis: An implementation of language server protocal (LSP) for Agda 2.
1010
description: Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
1111
category: Development

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: agda-language-server
2-
version: 0.2.6.4.0.2
2+
version: 0.2.6.4.0.3
33
github: "banacorn/agda-language-server"
44
license: MIT
55
author: "Ting-Gian LUA"

src/Server.hs

+2-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,8 @@ handlers =
112112
notificationHandler SInitialized $ \_not -> pure (),
113113
notificationHandler STextDocumentDidOpen $ \_not -> pure (),
114114
notificationHandler STextDocumentDidSave $ \_not -> pure (),
115-
notificationHandler STextDocumentDidChange $ \_not -> pure ()
115+
notificationHandler STextDocumentDidChange $ \_not -> pure (),
116+
notificationHandler SCancelRequest $ \_not -> pure ()
116117
-- -- syntax highlighting
117118
-- , requestHandler STextD_cumentSemanticTokensFull $ \req responder -> do
118119
-- result <- Handler.onHighlight (req ^. (params . textDocument . uri))

0 commit comments

Comments
 (0)