Skip to content

Commit 79039ef

Browse files
committed
[ fix ] Release Agda v2.7.0.1 Language Server v2
1 parent 5e4da3b commit 79039ef

File tree

5 files changed

+18
-6
lines changed

5 files changed

+18
-6
lines changed

.github/workflows/test.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,17 @@ jobs:
229229
cd ..
230230
mv zip/als-ubuntu.zip .
231231
fi
232-
if [[ ${{ runner.os }} == "macOS" ]]; then
232+
if [[ ${{ matrix.os }} == "macos-latest" ]]; then
233+
cd zip
234+
zip -r als-macos-arm64.zip ./*
235+
cd ..
236+
mv zip/als-macos-arm64.zip .
237+
fi
238+
if [[ ${{ matrix.os }} == "macos-13" ]]; then
233239
cd zip
234-
zip -r als-macos.zip ./*
240+
zip -r als-macos-x64.zip ./*
235241
cd ..
236-
mv zip/als-macos.zip .
242+
mv zip/als-macos-x64.zip .
237243
fi
238244
239245
- name: 📦 Bundle executable, DLLs and data files (on Windows)

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ 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.7.0.1.2 - 2024-12-4
8+
9+
### Fixed
10+
- Release of artefacts on macOS
11+
712
## v0.2.7.0.1.1 - 2024-12-4
813

914
### Added
1015
- #29: Integration testing for the language server
1116
- Prebuilt binaries for Intel x64 macOS
17+
- Support for Agda-2.7.0.1
1218

1319
### Changed
1420
- Unfied workflow for building and testing the language server across all platforms

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.7.0.1.1
8+
version: 0.2.7.0.1.2
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.7.0.1.1
2+
version: 0.2.7.0.1.2
33
github: "banacorn/agda-language-server"
44
license: MIT
55
author: "Ting-Gian LUA"

src/Options.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ options =
5959
]
6060

6161
usage :: String
62-
usage = "Agda v2.7.0.1 Language Server v1\nUsage: als [Options...]\n"
62+
usage = "Agda v2.7.0.1 Language Server v2\nUsage: als [Options...]\n"
6363

6464
usageAboutAgdaOptions :: String
6565
usageAboutAgdaOptions =

0 commit comments

Comments
 (0)