Skip to content

Commit 41b8fb0

Browse files
committed
[ doc ] Bump version & update CHANGELOG
1 parent e82fd5a commit 41b8fb0

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v0.2.0 - TBA
9+
10+
### Fixed
11+
- #2: Allow user to supply command-line options via agda-mode
12+
813
## v0.1.4 - 2021-10-04
914

1015
### Fixed

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.1.4
8+
version: 0.2.0
99
synopsis: An implementation of language server protocal (LSP) for Agda 2.
1010
description: Please see the README on GitHub at <https://github.com/banacorn/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.1.4
2+
version: 0.2.0
33
github: "banacorn/agda-language-server"
44
license: MIT
55
author: "Ting-Gian LUA"

src/Options.hs

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ usageAboutAgdaOptions =
6868
\ To pass command line options to Agda, put them in between '+AGDA' and '-AGDA'\n\
6969
\ For example:\n\
7070
\ als -p=3000 +AGDA --cubical -AGDA\n\
71+
\ If you are using agda-mode on VS Code, put them in the Settings at:\n\
72+
\ agdaMode.connection.commandLineOptions\n\
7173
\"
7274

7375
parseOpts :: [String] -> IO (Options, [String])

0 commit comments

Comments
 (0)