diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce36d51..679be1c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.1.1](https://github.com/elixir-tools/next-ls/compare/v0.1.0...v0.1.1) (2023-06-20) + + +### Bug Fixes + +* **elixir:** format inside runtime ([#13](https://github.com/elixir-tools/next-ls/issues/13)) ([99965f1](https://github.com/elixir-tools/next-ls/commit/99965f1b17250ead7524143b13246f08553b940a)) +* prefix logs with [NextLS] ([#12](https://github.com/elixir-tools/next-ls/issues/12)) ([36d8603](https://github.com/elixir-tools/next-ls/commit/36d86035dbcebbdee288e75221493547fb6afe04)) + ## [0.1.0](https://github.com/elixir-tools/next-ls/compare/v0.0.1...v0.1.0) (2023-06-20) diff --git a/bin/nextls b/bin/nextls index 69dc32be..eb7139a2 100755 --- a/bin/nextls +++ b/bin/nextls @@ -7,7 +7,7 @@ Logger.configure(level: :none) Mix.start() Mix.shell(Mix.Shell.Process) -default_version = "0.1.0" # x-release-please-version +default_version = "0.1.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 c67b8bd4..2cae0993 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.1.0", + version: "0.1.1", elixir: "~> 1.13", start_permanent: Mix.env() == :prod, package: package(),