diff --git a/CHANGELOG.md b/CHANGELOG.md index c179b8dd..43913537 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.4](https://github.com/elixir-tools/next-ls/compare/v0.6.3...v0.6.4) (2023-07-31) + + +### Bug Fixes + +* clear out references when saving a file ([#134](https://github.com/elixir-tools/next-ls/issues/134)) ([d0e0340](https://github.com/elixir-tools/next-ls/commit/d0e0340f0ccd88ec0ecd20f005748ef7f11cb586)) + ## [0.6.3](https://github.com/elixir-tools/next-ls/compare/v0.6.2...v0.6.3) (2023-07-31) diff --git a/bin/nextls b/bin/nextls index 468b9918..2d89b16b 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.6.3" # x-release-please-version +default_version = "0.6.4" # x-release-please-version Mix.install([{:next_ls, System.get_env("NEXTLS_VERSION", default_version)}]) diff --git a/mix.exs b/mix.exs index 8e6fe718..472cf59f 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.6.3", + version: "0.6.4", elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,