Skip to content

Commit

Permalink
[ new ] Release Language Server v4 that supports Agda-2.7.0.1, Agda-2…
Browse files Browse the repository at this point in the history
….6.4.3, and Agda-2.6.3
  • Loading branch information
banacorn committed Dec 6, 2024
1 parent 82d0b69 commit b0b972a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,14 @@ jobs:
# things to be cached

- name: 💾 Cache stack global package db
if: always() && steps.stack-global.outputs.cache-hit != 'true'
if: steps.stack-global.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: ${{ env.STACK_ROOT }}
key: ${{ steps.stack-global.outputs.cache-primary-key }}

- name: 💾 Cache .stack-work
if: always() && steps.stack-work.outputs.cache-hit != 'true'
if: steps.stack-work.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: .stack-work
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: agda-language-server
version: 0.2.7.0.1.3
version: 0.2.7.0.1.4
github: "banacorn/agda-language-server"
license: MIT
author: "Ting-Gian LUA"
Expand Down
10 changes: 9 additions & 1 deletion src/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@ options =
]

usage :: String
usage = "Agda v2.7.0.1 Language Server v3\nUsage: als [Options...]\n"
#if MIN_VERSION_Agda(2,7,0)
usage = "Agda v2.7.0.1 Language Server v4\nUsage: als [Options...]\n"
#endif
#if MIN_VERSION_Agda(2,6,4)
usage = "Agda v2.6.4.3 Language Server v4\nUsage: als [Options...]\n"
#endif
#if MIN_VERSION_Agda(2,6,3)
usage = "Agda v2.6.3 Language Server v4\nUsage: als [Options...]\n"
#endif

usageAboutAgdaOptions :: String
usageAboutAgdaOptions =
Expand Down

0 comments on commit b0b972a

Please sign in to comment.