Skip to content

Commit

Permalink
Drop OTP 23 support
Browse files Browse the repository at this point in the history
  • Loading branch information
plux committed Apr 30, 2024
1 parent 908d9e8 commit ebfb233
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
otp-version: [23, 24, 25, 26]
otp-version: [24, 25, 26]
runs-on: ${{ matrix.platform }}
container:
image: erlang:${{ matrix.otp-version }}
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Erlang
run: choco install -y erlang --version 23.3
run: choco install -y erlang --version 24.3
- name: Install rebar3
run: choco install -y rebar3 --version 3.13.1
- name: Compile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
otp-version: [23, 24, 25, 26]
otp-version: [24, 25, 26]
runs-on: ${{ matrix.platform }}
container:
image: erlang:${{ matrix.otp-version }}
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Erlang
run: choco install -y erlang --version 23.3
run: choco install -y erlang --version 24.3
- name: Install rebar3
run: choco install -y rebar3 --version 3.13.1
- name: Compile
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@
![Build](https://github.com/erlang-ls/erlang_ls/workflows/Build/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/erlang-ls/erlang_ls/badge.svg?branch=main)](https://coveralls.io/github/erlang-ls/erlang_ls?branch=main)

An Erlang server implementing Microsoft's Language Server Protocol 3.15.
An Erlang server implementing Microsoft's Language Server Protocol 3.17.

[Documentation](https://erlang-ls.github.io/)

## Minimum Requirements

* [Erlang OTP 22+](https://github.com/erlang/otp)
* [Erlang OTP 24+](https://github.com/erlang/otp)
* [rebar3 3.9.1+](https://github.com/erlang/rebar3)

## Supported OTP versions

* 23, 24, 25, 26
* 24, 25, 26

## Quickstart

Expand Down

0 comments on commit ebfb233

Please sign in to comment.