From 5dc37a4b6cd37aa675657b78c24769609df69fe4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 03:38:11 +0000 Subject: [PATCH] chore(main): release 0.3.4 --- 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 a8231e55..0b841d32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.4](https://github.com/elixir-tools/next-ls/compare/v0.3.3...v0.3.4) (2023-06-27) + + +### Bug Fixes + +* cancel current progress messages when changing/saving file ([#61](https://github.com/elixir-tools/next-ls/issues/61)) ([dca3b25](https://github.com/elixir-tools/next-ls/commit/dca3b25d420294a4ded8f920fdf9be54022ebc58)), closes [#40](https://github.com/elixir-tools/next-ls/issues/40) + ## [0.3.3](https://github.com/elixir-tools/next-ls/compare/v0.3.2...v0.3.3) (2023-06-25) diff --git a/bin/nextls b/bin/nextls index 630aec10..42f0e5ad 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.3.3" # x-release-please-version +default_version = "0.3.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 33fdce87..ecf103a1 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule NextLS.MixProject do [ app: :next_ls, description: "The langauge server for Elixir that just works", - version: "0.3.3", + version: "0.3.4", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, package: package(),