Skip to content
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

chore(main): release 0.17.0 #369

Merged
merged 1 commit into from
Feb 14, 2024
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
20 changes: 16 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: elixir-tools
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

- uses: actions/cache@v4
with:
Expand Down Expand Up @@ -56,7 +59,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: elixir-tools
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/cache@v4
with:
path: |
Expand All @@ -77,7 +83,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: elixir-tools
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'

# Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones
# Cache key based on Elixir & Erlang version (also useful when running in matrix)
Expand Down Expand Up @@ -130,7 +139,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: elixir-tools
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- uses: actions/cache@v4
with:
path: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v14
with:
name: elixir-tools
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix develop --command bash -c 'mix local.hex --force'
- run: nix develop --command bash -c 'mix local.rebar --force'
- run: nix develop --command bash -c 'mix deps.get --only prod'
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.17.0](https://github.com/elixir-tools/next-ls/compare/v0.16.1...v0.17.0) (2024-02-14)


### Features

* spitfire ([#368](https://github.com/elixir-tools/next-ls/issues/368)) ([bcb7e2e](https://github.com/elixir-tools/next-ls/commit/bcb7e2e7433b5488fd3f2bc7170be5028fb56409))

Incorporates experimental usage of the [Spitfire](https://github.com/elixir-tools/spitfire) parser.

To enable, the server should be started with `NEXTLS_SPITFIRE_ENABLED=1`.

`elixir-tools.nvim` and `elixir-tools.vscode` will have settings to enable this for you.


## [0.16.1](https://github.com/elixir-tools/next-ls/compare/v0.16.0...v0.16.1) (2024-01-21)


Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}: let
inherit (nixpkgs) lib;

version = "0.16.1"; # x-release-please-version
version = "0.17.0"; # x-release-please-version

# Helper to provide system-specific attributes
forAllSystems = f:
Expand Down Expand Up @@ -115,7 +115,7 @@
src = self.outPath;
inherit version elixir;
pname = "next-ls-deps";
hash = "sha256-RYPweYD1GD0D6A7ZkrtD3h7arCVimdStcOhrrlHFrnw=";
hash = "sha256-suYY3vY540T3cVrnLT6pfuGb0bcrjXJs/K/tveUh23Q=";
mixEnv = "prod";
};

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule NextLS.MixProject do
use Mix.Project

@version "0.16.1" # x-release-please-version
@version "0.17.0" # x-release-please-version

def project do
[
Expand Down
Loading