Skip to content

Commit f9ca65e

Browse files
authored
Release version 0.7.0 (#524)
* Release version 0.7.0 * Correct date in changelog
1 parent c6ab6f2 commit f9ca65e

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
### Unreleased
22

3+
Improvements:
4+
- Add commands for piping and unpiping text (thanks [Paulo Valente](https://github.com/polvalente)) [#515](https://github.com/elixir-lsp/elixir-ls/pull/515)
5+
6+
### v0.7.0: 06 April 2021
7+
38
Improvements:
49
- Use fuzzy matching for function completion (thanks [Po Chen](https://github.com/princemaple)) [#491](https://github.com/elixir-lsp/elixir-ls/pull/491/files)
510
- For example: "valp" will match `validate_password` and "Enum.chub" will match `Enum.chunk_by/2`
611
- Note: the plan is to extend this fuzzy matching to other types of completion in the future
712
- Support auto-generating folding ranges (textDocument/foldingRange) (thanks [billylanchantin](https://github.com/billylanchantin)) [#492](https://github.com/elixir-lsp/elixir-ls/pull/492)
813
- Snippet variants with n-1 placeholders to use after pipe (thanks [Leonardo Donelli](https://github.com/LeartS)) [#501](https://github.com/elixir-lsp/elixir-ls/pull/501)
914
- Make launcher script more robust and support symlinks... more robustly (thanks [Joshua Trees](https://github.com/jtrees)) [#473](https://github.com/elixir-lsp/elixir-ls/pull/473)
15+
- Add support for Elixir 1.12 (thanks [Łukasz Samson](https://github.com/lukaszsamson)) [#523](https://github.com/elixir-lsp/elixir-ls/pull/523)
1016

1117
Bug Fixes:
1218
- Make expandMacro a custom command (thanks [Łukasz Samson](https://github.com/lukaszsamson)) [#498](https://github.com/elixir-lsp/elixir-ls/pull/498)

apps/elixir_ls_debugger/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule ElixirLS.Debugger.Mixfile do
44
def project do
55
[
66
app: :elixir_ls_debugger,
7-
version: "0.6.5",
7+
version: "0.7.0",
88
build_path: "../../_build",
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",

apps/elixir_ls_utils/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule ElixirLS.Utils.Mixfile do
44
def project do
55
[
66
app: :elixir_ls_utils,
7-
version: "0.6.5",
7+
version: "0.7.0",
88
build_path: "../../_build",
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",

apps/language_server/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule ElixirLS.LanguageServer.Mixfile do
44
def project do
55
[
66
app: :language_server,
7-
version: "0.6.5",
7+
version: "0.7.0",
88
elixir: ">= 1.8.0",
99
build_path: "../../_build",
1010
config_path: "../../config/config.exs",

0 commit comments

Comments
 (0)