diff --git a/CHANGELOG.md b/CHANGELOG.md index d5167d0e..354821db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.5.1](https://github.com/elixir-tools/next-ls/compare/v0.5.0...v0.5.1) (2023-07-06) + + +### Bug Fixes + +* run compiler in task ([#95](https://github.com/elixir-tools/next-ls/issues/95)) ([96bfc76](https://github.com/elixir-tools/next-ls/commit/96bfc76250a568ea313693586adffd2de5249692)), closes [#60](https://github.com/elixir-tools/next-ls/issues/60) +* start dedicated process for runtime logging ([#94](https://github.com/elixir-tools/next-ls/issues/94)) ([32f8313](https://github.com/elixir-tools/next-ls/commit/32f8313dfd0d279214b999a746aeb10cf1e8dbf3)), closes [#92](https://github.com/elixir-tools/next-ls/issues/92) + ## [0.5.0](https://github.com/elixir-tools/next-ls/compare/v0.4.0...v0.5.0) (2023-07-03) diff --git a/bin/nextls b/bin/nextls index 7ddafcbf..bcd694af 100755 --- a/bin/nextls +++ b/bin/nextls @@ -9,7 +9,7 @@ Logger.configure(level: :none) Mix.start() Mix.shell(Mix.Shell.Process) -default_version = "0.5.0" # x-release-please-version +default_version = "0.5.1" # x-release-please-version Mix.install([{:next_ls, System.get_env("NEXTLS_VERSION", default_version)}]) diff --git a/mix.exs b/mix.exs index fa14e286..13e35d0e 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule NextLS.MixProject do [ app: :next_ls, description: "The language server for Elixir that just works", - version: "0.5.0", + version: "0.5.1", elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,