Skip to content

Commit

Permalink
[ fix ] Release Agda v2.7.0.1 Language Server v2
Browse files Browse the repository at this point in the history
  • Loading branch information
banacorn committed Dec 4, 2024
1 parent 5e4da3b commit 79039ef
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,17 @@ jobs:
cd ..
mv zip/als-ubuntu.zip .
fi
if [[ ${{ runner.os }} == "macOS" ]]; then
if [[ ${{ matrix.os }} == "macos-latest" ]]; then
cd zip
zip -r als-macos-arm64.zip ./*
cd ..
mv zip/als-macos-arm64.zip .
fi
if [[ ${{ matrix.os }} == "macos-13" ]]; then
cd zip
zip -r als-macos.zip ./*
zip -r als-macos-x64.zip ./*
cd ..
mv zip/als-macos.zip .
mv zip/als-macos-x64.zip .
fi
- name: 📦 Bundle executable, DLLs and data files (on Windows)
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file.

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

## v0.2.7.0.1.2 - 2024-12-4

### Fixed
- Release of artefacts on macOS

## v0.2.7.0.1.1 - 2024-12-4

### Added
- #29: Integration testing for the language server
- Prebuilt binaries for Intel x64 macOS
- Support for Agda-2.7.0.1

### Changed
- Unfied workflow for building and testing the language server across all platforms
Expand Down
2 changes: 1 addition & 1 deletion agda-language-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: agda-language-server
version: 0.2.7.0.1.1
version: 0.2.7.0.1.2
synopsis: An implementation of language server protocal (LSP) for Agda 2.
description: Please see the README on GitHub at <https://github.com/agda/agda-language-server#readme>
category: Development
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.1
version: 0.2.7.0.1.2
github: "banacorn/agda-language-server"
license: MIT
author: "Ting-Gian LUA"
Expand Down
2 changes: 1 addition & 1 deletion src/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ options =
]

usage :: String
usage = "Agda v2.7.0.1 Language Server v1\nUsage: als [Options...]\n"
usage = "Agda v2.7.0.1 Language Server v2\nUsage: als [Options...]\n"

usageAboutAgdaOptions :: String
usageAboutAgdaOptions =
Expand Down

0 comments on commit 79039ef

Please sign in to comment.