Skip to content

Commit 6aada7f

Browse files
author
José Valim
committed
Update CHANGELOG and fix tasks printing
1 parent e24cef0 commit 6aada7f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Enhancements
44
* [Kernel] Store documentation in the abstract code to avoid loading them when the module is loaded
5+
* [Protocol] Add `Protocol.consolidate/2`, `Protocol.consolidated?/1` and a `mix compile.protocols` task for protocol consolidation
56
* [String] Add `String.chunk/2`
67
* [Struct] Add support for `@derive` before `defstruct/2` definitions
78

lib/mix/test/mix/tasks/compile_test.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ defmodule Mix.Tasks.CompileTest do
1717
test "mix compile --list with mixfile" do
1818
Mix.Tasks.Compile.run ["--list"]
1919
assert_received {:mix_shell, :info, ["\nEnabled compilers: yecc, leex, erlang, elixir, app"]}
20-
assert_received {:mix_shell, :info, ["mix compile.elixir # " <> _]}
20+
assert_received {:mix_shell, :info, ["mix compile.elixir # " <> _]}
2121
end
2222

2323
test "mix compile --list with custom mixfile" do

0 commit comments

Comments
 (0)