From 1123cf31c23ecfa67e9c292ff2c6ce9b847b9f09 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 30 Jul 2023 20:39:25 -0400 Subject: [PATCH] chore(main): release 0.6.3 (#133) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ bin/nextls | 2 +- mix.exs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58db549f..c179b8dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.6.3](https://github.com/elixir-tools/next-ls/compare/v0.6.2...v0.6.3) (2023-07-31) + + +### Bug Fixes + +* only fetch most recent reference for that position ([00fbfbf](https://github.com/elixir-tools/next-ls/commit/00fbfbfe9e553cec04f129024b1256030cd6651f)) + ## [0.6.2](https://github.com/elixir-tools/next-ls/compare/v0.6.1...v0.6.2) (2023-07-30) diff --git a/bin/nextls b/bin/nextls index 3434abea..468b9918 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.2" # x-release-please-version +default_version = "0.6.3" # x-release-please-version Mix.install([{:next_ls, System.get_env("NEXTLS_VERSION", default_version)}]) diff --git a/mix.exs b/mix.exs index a68b667c..8e6fe718 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.2", + version: "0.6.3", elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,