Skip to content

Commit 9a2a0c3

Browse files
chore(main): release 0.6.0 (#122)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent d26e29c commit 9a2a0c3

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.6.0](https://github.com/elixir-tools/next-ls/compare/v0.5.5...v0.6.0) (2023-07-24)
4+
5+
6+
### Features
7+
8+
* adding/removing workspace folders ([#126](https://github.com/elixir-tools/next-ls/issues/126)) ([d26e29c](https://github.com/elixir-tools/next-ls/commit/d26e29c733ed040c7b7bc941956aa1ffef35726b))
9+
* workspace folders on startup ([#117](https://github.com/elixir-tools/next-ls/issues/117)) ([6b5ffaf](https://github.com/elixir-tools/next-ls/commit/6b5ffafda9c754f59548760384387dbe66cf8e3b))
10+
11+
12+
### Bug Fixes
13+
14+
* clamp diagnostic line number to 0 ([#116](https://github.com/elixir-tools/next-ls/issues/116)) ([e2194c5](https://github.com/elixir-tools/next-ls/commit/e2194c5d78eb042b537f4c0df6f74d9cfa2d6017))
15+
* create the symbol table in the workspace path ([#125](https://github.com/elixir-tools/next-ls/issues/125)) ([1103d01](https://github.com/elixir-tools/next-ls/commit/1103d0105faeb60c9b8d90a95aa49f795c44d505))
16+
* start runtime under a supervisor ([#124](https://github.com/elixir-tools/next-ls/issues/124)) ([df331dc](https://github.com/elixir-tools/next-ls/commit/df331dcd3ceca943a513529481bc0acf75cd4acb))
17+
* use registry for runtime messaging ([#121](https://github.com/elixir-tools/next-ls/issues/121)) ([639493c](https://github.com/elixir-tools/next-ls/commit/639493c173f2b8f3cdc21ea81fb48290688d40b7))
18+
319
## [0.5.5](https://github.com/elixir-tools/next-ls/compare/v0.5.4...v0.5.5) (2023-07-20)
420

521

bin/nextls

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Logger.configure(level: :none)
99
Mix.start()
1010
Mix.shell(Mix.Shell.Process)
1111

12-
default_version = "0.5.5" # x-release-please-version
12+
default_version = "0.6.0" # x-release-please-version
1313

1414
Mix.install([{:next_ls, System.get_env("NEXTLS_VERSION", default_version)}])
1515

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule NextLS.MixProject do
55
[
66
app: :next_ls,
77
description: "The language server for Elixir that just works",
8-
version: "0.5.5",
8+
version: "0.6.0",
99
elixir: "~> 1.13",
1010
elixirc_paths: elixirc_paths(Mix.env()),
1111
start_permanent: Mix.env() == :prod,

0 commit comments

Comments
 (0)