diff --git a/CHANGELOG.md b/CHANGELOG.md index dbb8710..3c24941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## [0.7.1](https://github.com/elixir-tools/gen_lsp/compare/v0.7.0...v0.7.1) (2024-01-02) + + +### Bug Fixes + +* protect String.split from >2 parts ([#50](https://github.com/elixir-tools/gen_lsp/issues/50)) ([9988f4a](https://github.com/elixir-tools/gen_lsp/commit/9988f4aa4b1ca6e8d061ab737ceda231f65c1117)) + ## [0.7.0](https://github.com/elixir-tools/gen_lsp/compare/v0.6.3...v0.7.0) (2023-11-29) diff --git a/mix.exs b/mix.exs index da232b1..35ca009 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule GenLSP.MixProject do app: :gen_lsp, description: "Library for creating language servers", source_url: @source_url, - version: "0.7.0", + version: "0.7.1", elixir: "~> 1.11", start_permanent: Mix.env() == :prod, deps: deps(),