Skip to content

Prepare release 2.5.0.0 #3879

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ build_task:
GITHUB_WORKSPACE: ${CIRRUS_WORKING_DIR}
CABAL_CACHE_NONFATAL: "yes"
matrix:
- name: build-ghc-9.0.2
env:
GHC_VERSION: 9.0.2
- name: build-ghc-9.2.5
env:
GHC_VERSION: 9.2.5
Expand All @@ -43,7 +40,6 @@ build_task:
bindist_task:
name: bindist
depends_on:
- build-ghc-9.0.2
- build-ghc-9.2.5
- build-ghc-9.2.7
timeout_in: 120m
Expand All @@ -60,10 +56,6 @@ bindist_task:
- tzsetup Etc/GMT
- adjkerntz -a

- curl -o binaries-9.0.2.tar.xz -L https://api.cirrus-ci.com/v1/artifact/build/${CIRRUS_BUILD_ID}/build-ghc-9.0.2/binaries/out.tar.xz
- tar xvf binaries-9.0.2.tar.xz
- rm -f binaries-9.0.2.tar.xz

- curl -o binaries-9.2.5.tar.xz -L https://api.cirrus-ci.com/v1/artifact/build/${CIRRUS_BUILD_ID}/build-ghc-9.2.5/binaries/out.tar.xz
- tar xvf binaries-9.2.5.tar.xz
- rm -f binaries-9.2.5.tar.xz
Expand Down
3 changes: 2 additions & 1 deletion .github/scripts/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ fi
export PATH="$HOME/.local/bin:$PATH"

export BOOTSTRAP_HASKELL_NONINTERACTIVE=1
export BOOTSTRAP_HASKELL_CABAL_VERSION="${CABAL_VER:-3.8.1.0}"
export BOOTSTRAP_HASKELL_CABAL_VERSION="${CABAL_VER:-3.10.2.0}"
export BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG=no
export BOOTSTRAP_HASKELL_INSTALL_NO_STACK=yes
export BOOTSTRAP_HASKELL_ADJUST_BASHRC=1

if [ "${RUNNER_OS}" = "Windows" ] ; then
# on windows use pwd to get unix style path
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8"]
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8"]
platform: [ { image: "debian:9"
, installCmd: "sed -i s/deb.debian.org/archive.debian.org/g /etc/apt/sources.list && sed -i 's|security.debian.org|archive.debian.org/|g' /etc/apt/sources.list && sed -i /-updates/d /etc/apt/sources.list && apt-get update && apt-get install -y"
, toolRequirements: "libnuma-dev zlib1g-dev libgmp-dev libgmp10 libssl-dev liblzma-dev libbz2-dev git wget lsb-release software-properties-common gnupg2 apt-transport-https gcc autoconf automake build-essential curl ghc gzip libffi-dev libncurses-dev libncurses5 libtinfo5 patchelf"
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
, ARTIFACT: "x86_64-linux-unknown"
, ADD_CABAL_ARGS: "--enable-split-sections"
}
- ghc: 9.4.7
- ghc: 9.4.8
platform:
{ image: "fedora:27"
, installCmd: "dnf install -y"
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
strategy:
fail-fast: true
matrix:
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8" ]
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8" ]
steps:
- uses: docker://arm64v8/ubuntu:focal
name: Cleanup (aarch64 linux)
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8"]
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8"]
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8"]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ["9.8.1", "9.6.3", "9.4.7", "9.2.8"]
ghc: ["9.8.1", "9.6.3", "9.4.8", "9.2.8"]
steps:
- name: install windows deps
shell: pwsh
Expand Down Expand Up @@ -621,13 +621,13 @@ jobs:

- name: Create bindist
run: |
bash .github/scripts/brew.sh git coreutils llvm@11 autoconf automake tree
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@11/bin:$PATH"
export CC="$HOME/.brew/opt/llvm@11/bin/clang"
export CXX="$HOME/.brew/opt/llvm@11/bin/clang++"
bash .github/scripts/brew.sh git coreutils llvm@13 autoconf automake tree
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@13/bin:$PATH"
export CC="$HOME/.brew/opt/llvm@13/bin/clang"
export CXX="$HOME/.brew/opt/llvm@13/bin/clang++"
export LD=ld
export AR="$HOME/.brew/opt/llvm@11/bin/llvm-ar"
export RANLIB="$HOME/.brew/opt/llvm@11/bin/llvm-ranlib"
export AR="$HOME/.brew/opt/llvm@13/bin/llvm-ar"
export RANLIB="$HOME/.brew/opt/llvm@13/bin/llvm-ranlib"
for bindist in out-*.tar ; do
tar xf "${bindist}"
done
Expand Down Expand Up @@ -872,13 +872,13 @@ jobs:

- name: Run test (mac)
run: |
bash .github/scripts/brew.sh git coreutils llvm@11 autoconf automake tree
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@11/bin:$PATH"
export CC="$HOME/.brew/opt/llvm@11/bin/clang"
export CXX="$HOME/.brew/opt/llvm@11/bin/clang++"
bash .github/scripts/brew.sh git coreutils llvm@13 autoconf automake tree
export PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@13/bin:$PATH"
export CC="$HOME/.brew/opt/llvm@13/bin/clang"
export CXX="$HOME/.brew/opt/llvm@13/bin/clang++"
export LD=ld
export AR="$HOME/.brew/opt/llvm@11/bin/llvm-ar"
export RANLIB="$HOME/.brew/opt/llvm@11/bin/llvm-ranlib"
export AR="$HOME/.brew/opt/llvm@13/bin/llvm-ar"
export RANLIB="$HOME/.brew/opt/llvm@13/bin/llvm-ranlib"
bash .github/scripts/test.sh

test-win:
Expand Down
38 changes: 38 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog for haskell-language-server

## 2.5.0.0

- Bindists for GHC 9.4.8
- Drop support for GHC 9.0
- Re-add stan plugin
- Load default operator fixities in Fourmolu plugin

### Pull Requests

- Drop support for GHC 9.0
([#3875](https://github.com/haskell/haskell-language-server/pull/3875)) by @michaelpj
- Fix support tables
([#3874](https://github.com/haskell/haskell-language-server/pull/3874)) by @michaelpj
- Prefer hls-test-utils functions over code duplication
([#3870](https://github.com/haskell/haskell-language-server/pull/3870)) by @fendor
- Make sure running tests locally pick up the correct cradle type
([#3869](https://github.com/haskell/haskell-language-server/pull/3869)) by @fendor
- Some versions of stylish-haskell do need the ghc-lib flag
([#3868](https://github.com/haskell/haskell-language-server/pull/3868)) by @michaelpj
- Remove head.hackage
([#3867](https://github.com/haskell/haskell-language-server/pull/3867)) by @wz1000
- Load default operator fixities in Fourmolu plugin non-CLI mode
([#3855](https://github.com/haskell/haskell-language-server/pull/3855)) by @georgefst
- Fix #3847
([#3854](https://github.com/haskell/haskell-language-server/pull/3854)) by @BurningLutz
- Re-add hls-stan-plugin
([#3851](https://github.com/haskell/haskell-language-server/pull/3851)) by @0rphee
- Bump fkirc/skip-duplicate-actions from 5.3.0 to 5.3.1
([#3850](https://github.com/haskell/haskell-language-server/pull/3850)) by @dependabot[bot]
- Merge definitions from all plugins for Document(Type)Definition message
([#3846](https://github.com/haskell/haskell-language-server/pull/3846)) by @JiriLojda
- Simplify cabal.project
([#3836](https://github.com/haskell/haskell-language-server/pull/3836)) by @michaelpj
- Set the root for tests to the test directory
([#3830](https://github.com/haskell/haskell-language-server/pull/3830)) by @fendor
- Reduce Nix support
([#3804](https://github.com/haskell/haskell-language-server/pull/3804)) by @michaelpj

## 2.4.0.0

* Initial support for GHC 9.8.1, without plugins dependent on `ghc-exactprint`
Expand Down
2 changes: 1 addition & 1 deletion ghcide-bench/ghcide-bench.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 3.0
build-type: Simple
category: Development
name: ghcide-bench
version: 2.4.0.0
version: 2.5.0.0
license: Apache-2.0
license-file: LICENSE
author: The Haskell IDE team
Expand Down
6 changes: 3 additions & 3 deletions ghcide/ghcide.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 3.0
build-type: Simple
category: Development
name: ghcide
version: 2.4.0.0
version: 2.5.0.0
license: Apache-2.0
license-file: LICENSE
author: Digital Asset and Ghcide contributors
Expand Down Expand Up @@ -79,8 +79,8 @@ library
, hie-bios ==0.13.1
, hie-compat ^>=0.3.0.0
, hiedb >=0.4.4 && <0.4.5
, hls-graph ==2.4.0.0
, hls-plugin-api ==2.4.0.0
, hls-graph == 2.5.0.0
, hls-plugin-api == 2.5.0.0
, implicit-hie >= 0.1.4.0 && < 0.1.5
, lens
, list-t
Expand Down
Loading